official uglifyjs plugin, which now supports parallelization
This project is deprecated in favor ofIdentical to standard uglify webpack plugin, with an option to build multiple files in parallel
Installation
npm install --save-dev webpack-uglify-parallel
Usage
In webpack.config.js:
var os = require('os');
var UglifyJsParallelPlugin = require('webpack-uglify-parallel');
module.exports = {
/// ... rest of config
plugins: [
new UglifyJsParallelPlugin({
workers: os.cpus().length, // usually having as many workers as cpu cores gives good results
// other uglify options
})
]
}