From 8f72daebcf288f4cc148694b4805ec2c82b6ee40 Mon Sep 17 00:00:00 2001 From: Bill Church Date: Fri, 15 Nov 2019 13:00:38 -0500 Subject: [PATCH] build:remove uglify from build process and reaplce with terser --- app/scripts/webpack.prod.js | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/app/scripts/webpack.prod.js b/app/scripts/webpack.prod.js index e4103c8..08e51a3 100644 --- a/app/scripts/webpack.prod.js +++ b/app/scripts/webpack.prod.js @@ -1,6 +1,5 @@ const TerserPlugin = require('terser-webpack-plugin'); const merge = require('webpack-merge') -// const UglifyJSPlugin = require('uglifyjs-webpack-plugin') const common = require('./webpack.common.js') module.exports = merge(common, { @@ -14,16 +13,4 @@ module.exports = merge(common, { } })], } -}) - - -/* new UglifyJSPlugin({ - uglifyOptions: { - ie8: false, - dead_code: true, - output: { - comments: false, - beautify: false - } - } -}) */ \ No newline at end of file +}) \ No newline at end of file