UglifyJS plugin for Fly.
npm install --save-dev fly-uglify
Check out the UglifyJS documentation to see the available options.
exports.build = function * () { yield this.source('src/**/*.uglify') .uglify({ compress: { drop_console: true, join_vars: true } }) .target('dist'); }
MIT © FlyJS