My React + Webpack boilerplate 202108
- yarn
- webpack
- typescript
- prettier
- eslint
This code does not include framework, ci, and other (production) tools.
Creating a repository from a template
# ... Setup node and yarn
$ git clone git@github.com:kobakazu0429/react-webpack-boilerplate.git --depth 1 <your project name>
$ cd <your project name>
$ git fetch origin --unshallow
$ git remote rm origin
$ yarn install
$ yarn dev # Start webpack-dev-server
$ yarn build # Build to dist/
$ yarn lint # Check type and syntax
# ... Setup node and yarn
$ git clone <git repository url>
$ cd <your project name>
$ yarn install
# written in package.json
$ yarn dev # Start webpack-dev-server
$ yarn build # Build to dist/
$ yarn lint # Check type and syntax