npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

fly-uglify

2.1.1

@lukeed

npmHomeRepoSnykSocket
Downloads:526
$ npm install fly-uglify
DailyWeeklyMonthlyYearly

fly-uglify

UglifyJS plugin for Fly.

Install

npm install --save-dev fly-uglify

API

.uglify(options)

Check out the UglifyJS documentation to see the available options.

Usage

exports.build = function * () {
  yield this.source('src/**/*.uglify')
    .uglify({
      compress: {
        drop_console: true,
        join_vars: true
      }
    })
    .target('dist');
}

License

MIT © FlyJS