├── .babelrc ├── .ccarc.example ├── .codeclimate.yml ├── .eslintrc ├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── docs ├── CAC0CC7B.png ├── CUSTOM-TEMPLATES-COMMUNITY.md ├── CUSTOM-TEMPLATES.md ├── Create-Component-App Logo 1.svg ├── Create-Component-App Logo 2.svg ├── Create-Component-App Logo wBg.png ├── Create-Component-App Logo.png ├── cca-no-templates.gif └── cca-templates.gif ├── jestsetup.js ├── package.json ├── scripts └── build.sh ├── src ├── .DS_Store ├── config.json ├── defaultTemplates │ ├── __tests__ │ │ └── index.test.js │ ├── css │ │ ├── __tests__ │ │ │ └── style.template.test.js │ │ └── style.template.js │ ├── index.js │ └── js │ │ ├── __tests__ │ │ ├── class.template.test.js │ │ ├── common.template.test.js │ │ ├── functional.template.test.js │ │ ├── storybook.template.test.js │ │ └── test.template.test.js │ │ ├── class.template.js │ │ ├── common.template.js │ │ ├── functional.template.js │ │ ├── index.template.js │ │ ├── storybook.template.js │ │ └── test.template.js ├── files.js ├── index.js ├── logger.js ├── questions.js └── utils.js └── templates ├── HigherOrderComponent └── COMPONENT_NAME.js ├── RecomposeReduxForm └── index.js ├── classic └── COMPONENT_NAME.js ├── classicES7 └── COMPONENT_NAME.js ├── presentational └── COMPONENT_NAME.js └── statefulES7 └── COMPONENT_NAME.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.babelrc -------------------------------------------------------------------------------- /.ccarc.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.ccarc.example -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/README.md -------------------------------------------------------------------------------- /docs/CAC0CC7B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/CAC0CC7B.png -------------------------------------------------------------------------------- /docs/CUSTOM-TEMPLATES-COMMUNITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/CUSTOM-TEMPLATES-COMMUNITY.md -------------------------------------------------------------------------------- /docs/CUSTOM-TEMPLATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/CUSTOM-TEMPLATES.md -------------------------------------------------------------------------------- /docs/Create-Component-App Logo 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/Create-Component-App Logo 1.svg -------------------------------------------------------------------------------- /docs/Create-Component-App Logo 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/Create-Component-App Logo 2.svg -------------------------------------------------------------------------------- /docs/Create-Component-App Logo wBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/Create-Component-App Logo wBg.png -------------------------------------------------------------------------------- /docs/Create-Component-App Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/Create-Component-App Logo.png -------------------------------------------------------------------------------- /docs/cca-no-templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/cca-no-templates.gif -------------------------------------------------------------------------------- /docs/cca-templates.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/docs/cca-templates.gif -------------------------------------------------------------------------------- /jestsetup.js: -------------------------------------------------------------------------------- 1 | require('mock-fs') -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/config.json -------------------------------------------------------------------------------- /src/defaultTemplates/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/__tests__/index.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/css/__tests__/style.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/css/__tests__/style.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/css/style.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/css/style.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/index.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/__tests__/class.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/__tests__/class.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/__tests__/common.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/__tests__/common.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/__tests__/functional.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/__tests__/functional.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/__tests__/storybook.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/__tests__/storybook.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/__tests__/test.template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/__tests__/test.template.test.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/class.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/class.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/common.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/common.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/functional.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/functional.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/index.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/index.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/storybook.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/storybook.template.js -------------------------------------------------------------------------------- /src/defaultTemplates/js/test.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/defaultTemplates/js/test.template.js -------------------------------------------------------------------------------- /src/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/files.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/logger.js -------------------------------------------------------------------------------- /src/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/questions.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/src/utils.js -------------------------------------------------------------------------------- /templates/HigherOrderComponent/COMPONENT_NAME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/HigherOrderComponent/COMPONENT_NAME.js -------------------------------------------------------------------------------- /templates/RecomposeReduxForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/RecomposeReduxForm/index.js -------------------------------------------------------------------------------- /templates/classic/COMPONENT_NAME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/classic/COMPONENT_NAME.js -------------------------------------------------------------------------------- /templates/classicES7/COMPONENT_NAME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/classicES7/COMPONENT_NAME.js -------------------------------------------------------------------------------- /templates/presentational/COMPONENT_NAME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/presentational/COMPONENT_NAME.js -------------------------------------------------------------------------------- /templates/statefulES7/COMPONENT_NAME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVarisco/create-component-app/HEAD/templates/statefulES7/COMPONENT_NAME.js --------------------------------------------------------------------------------