asterjs / aster-uglify

Minify scripts with UglifyJS2 in aster.

Home Page:https://npmjs.org/package/aster-uglify

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aster-uglify

NPM version Build Status

Minify scripts with UglifyJS2 in aster.

Usage

First, install aster-uglify as a development dependency:

npm install --save-dev aster-uglify

Then, add it to your build script:

var aster = require('aster');
var uglify = require('aster-uglify');

aster.src('src/**/*.js')
.map(uglify({
  mangle: true,
  compress: {
    unsafe: true
  }
}))
.map(aster.dest('dist'))
.subscribe(aster.runner);

API

uglify(options)

options.mangle

Type: Boolean Default: false

Mangle names.

options.compress

Type: Object Default: false

See available list of options here.

License

MIT License

About

Minify scripts with UglifyJS2 in aster.

https://npmjs.org/package/aster-uglify

License:MIT License


Languages

Language:JavaScript 100.0%