React Boilerplate with
Pre-requisites
node v6.x
$ node -v
v6.3.1
npm v3.x
$ npm -v
3.10.6
Set up
git clone <repo url>
cd react-webpack2-redux-rhl3-boilerplate
npm i
Start development in watch mode
npm run watch
Tests
Run all tests and generate a coverage report under ./converage/lcov-report/index.html
npm run test
Tests in watch mode
Watch for file changes and run only tests related to changed files
npm run watch:test
Prod build
This generates uglified assets under the build
directory
npm run build
Test the generated files by
npm run serve