#webpack-starter
A simple webpack 4 starter project for your basic web development needs.
- Separated development and production webpack settings you can understand
- Pug
- SCSS
- ES6 / TS
- CSS Vendor prefixing
- Development server
- Sourcemaps
- ESLint
- StyleLint
- Production optimizations
You can install webpack-starter
by simply forking the repo:
# clone the repo
$ git clone https://github.com/...
$ cd webpack-starter
Below are the scripts to start, build, this project:
# use `yarn` or `npm` to install the dependencies
$ yarn
or
$ npm i
# dev server
$ yarn start
# development build
$ yarn build:dev
# production build
$ yarn build