#Gulp + Browserify app starter
##CSS
- autoprefixer
- Sass (with source maps)
- minification
##JS
- Browserify (with source maps)
- uglfiy
- JSHint
##HTML
- dev/production asset paths
##Other
- error notifications for Sass, JSHint & Browserify
- clean
- watch
- BrowserSync
#usage
- git clone this repo
- rename the cloned directory with your project name
- from project directory, run
npm install
to download dependencies - run
gulp
to:- create or update
dist
directory for development - start a local server on port :3000 in your default browser
- create or update
- run
gulp build
to switch over to production asset paths (i.e. minified files)
##notes Browserify source maps aren't working on the latest Firefox Developer Edition (36). Use Chrome for source map debugging.