Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 700 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 700 Bytes

This is a simple little helper to quickly create minify tasks for Jake using UglifyJS.

Usage

Here is a simple example Jakefile.js:

var minify = require('jake-uglify').minify;

task('default', ['bitcoinjs-min.js']);

desc('General-purpose build containing most features');
minify({'bitcoinjs-min.js': [
    'src/bitcoin.js',
    'src/wallet.js'
]});

Options

You can provide a second object with additional settings:

minify({'bitcoinjs-min.js': [
    'src/bitcoin.js',
    'src/wallet.js'
]},{
  header: "/* BitcoinJS v1.0.0 */"
});
  • header: Header that should be prepended to the minified result