This setup uses Browserify as the module bundler and transpiles ES6+ code into ES5 with Babel. Production build is being mangled and compressed with UglifyJS.
Furthermore the following transforms are enabled:
Have fun! ✌️
# install dependencies
npm install
# build for development
npm run build
# build for production
npm run build:prod
# watches the javascript files for changes and builds them automatically
npm run watch
# tests if the javascript files would build without errors
npm run test