Skip to content
This repository has been archived by the owner on Sep 19, 2019. It is now read-only.

tradingview/webpack-uglify-parallel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is deprecated in favor of official uglifyjs plugin, which now supports parallelization

Identical 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
        })
    ]
}

About

Identical to standard uglify webpack plugin, with an option to build multiple files in parallel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published