├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── .whitesource ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── Gruntfile.js ├── LICENSE ├── README.md ├── Rakefile ├── bin └── create-react-app-webpack.ts ├── config └── application.example.yml ├── lib ├── cli.ts ├── constants.ts ├── create.ts ├── dependencies.ts └── helper.ts ├── package.json ├── template ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── docker │ ├── Dockerfile.dev │ ├── dev.js │ └── docker-compose.yml ├── package.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.html │ ├── index.js │ ├── logo.svg │ └── setupTests.js ├── webpack.config.js ├── webpack.dev.js └── webpack.prod.js ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | testing 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/create-react-app-webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/bin/create-react-app-webpack.ts -------------------------------------------------------------------------------- /config/application.example.yml: -------------------------------------------------------------------------------- 1 | CHANGELOG_GITHUB_TOKEN: «your-40-digit-github-token» 2 | -------------------------------------------------------------------------------- /lib/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/lib/cli.ts -------------------------------------------------------------------------------- /lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/lib/constants.ts -------------------------------------------------------------------------------- /lib/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/lib/create.ts -------------------------------------------------------------------------------- /lib/dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/lib/dependencies.ts -------------------------------------------------------------------------------- /lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/lib/helper.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/.eslintrc -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/README.md -------------------------------------------------------------------------------- /template/docker/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/docker/Dockerfile.dev -------------------------------------------------------------------------------- /template/docker/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/docker/dev.js -------------------------------------------------------------------------------- /template/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/docker/docker-compose.yml -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/App.css -------------------------------------------------------------------------------- /template/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/App.js -------------------------------------------------------------------------------- /template/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/App.test.js -------------------------------------------------------------------------------- /template/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/index.css -------------------------------------------------------------------------------- /template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/index.html -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/index.js -------------------------------------------------------------------------------- /template/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/logo.svg -------------------------------------------------------------------------------- /template/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/src/setupTests.js -------------------------------------------------------------------------------- /template/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/webpack.config.js -------------------------------------------------------------------------------- /template/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/webpack.dev.js -------------------------------------------------------------------------------- /template/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/template/webpack.prod.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrijshikhar/create-react-app-webpack/HEAD/yarn.lock --------------------------------------------------------------------------------