From 2a75d67be96301c0dbe29495fcd4e61947df76d9 Mon Sep 17 00:00:00 2001 From: Lyubo Marinov Date: Thu, 7 Sep 2017 20:06:34 -0500 Subject: [PATCH] Webpack with scope hoisting --- webpack.config.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 88470f41e..498d3f16f 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -33,16 +33,12 @@ if (minimize) { NODE_ENV: JSON.stringify('production') } })); - + plugins.push(new webpack.optimize.ModuleConcatenationPlugin()); plugins.push(new webpack.optimize.UglifyJsPlugin({ compress: { - // It is nice to see warnings from UglifyJsPlugin that something is - // unused/removed. warnings: true }, extractComments: true, - - // Use the source map to map error message locations to modules. sourceMap: true })); }