aster-uglify
v0.0.3
Published
Minify scripts with UglifyJS2 in aster.
Downloads
4
Maintainers
Readme
aster-uglify
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.