Webpack build taking too much time -
i'm using webpack module bundler project. added third party libraries lead increase in build time. due uglify js plugin. build stucks @ 91% before compltetly running webpack. without plugin, it's taking less time. have use plugin. tried use parallel uglify js plugin. didn't seem work in case. suggest me in other ways should try succeed in reducing build time. have attached webpack file reference. var webpack = require('webpack'); var path = require("path"); var glob = require("glob"); module.exports = { entry: glob.sync("./app/javascript/views/*.js") .reduce(function(map, path) { map[path.split('/').pop()] = path; return map; }, {}), output: { path: path.resolve(__dirname, 'app/assets/javascripts'), filename: '[name]' }, stats: { colors: true, reasons: false }, resolve: { extensions: ['.js', '.jsx'],