Compiles all the scripts & styles from src path to dist.Generates source maps by default in development mode. for react app wepack compile and hot reload happens on page.For other static documents gulp watches and notify webpack of changes then browser sync updated the webpage automatically.
##Installation
$ npm install ##Usage
To build on development mode, generates a minified version with source map.
$ npm run buildTo build on production mode
$ NODE_ENV=production npm run buildTo use webpack dev server & watch in one tab,
$ npm startand in another tab start gulp
$ gulpTo see react-hot-loader in action, edit app/src/js/reactapp/HelloWorld.jsx
Cheers