0.2.0 • Published 8 years ago

broccoli-uglify-js v0.2.0

Weekly downloads
577
License
MIT
Repository
github
Last release
8 years ago

broccoli-uglify-js

UglifyJS2 filter for Broccoli.

Installation

npm install --save-dev broccoli-uglify-js

Usage

var uglifyJavaScript = require('broccoli-uglify-js');
tree = uglifyJavaScript(tree, options);

Options

The following options are supported:

  • mangle (passed through to UglifyJS): pass false to skip mangling names

  • compress (passed through to UglifyJS): pass false to skip compressing; pass an object to specify compressor options

  • output (passed through to UglifyJS): pass an object to specify additional output options

To Do

  • Enable ascii_only by default

Source Maps

Source maps are not yet supported.