aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/webpack.config.js
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-10-04 22:47:43 +0800
committerFabio Berger <me@fabioberger.com>2018-10-04 22:47:43 +0800
commitc613b6741d7eff069c93ef1a800b67ddfb618c51 (patch)
treeb5ec60c76250be6fb43b22aae028454a0c89fc4e /packages/0x.js/webpack.config.js
parentf7917cfa659452981df8233248283ca760d870a1 (diff)
downloaddexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar.gz
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar.bz2
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar.lz
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar.xz
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.tar.zst
dexon-0x-contracts-c613b6741d7eff069c93ef1a800b67ddfb618c51.zip
Upgrade webpack
Diffstat (limited to 'packages/0x.js/webpack.config.js')
-rw-r--r--packages/0x.js/webpack.config.js31
1 files changed, 13 insertions, 18 deletions
diff --git a/packages/0x.js/webpack.config.js b/packages/0x.js/webpack.config.js
index 1ad0a79ec..397faa76f 100644
--- a/packages/0x.js/webpack.config.js
+++ b/packages/0x.js/webpack.config.js
@@ -2,8 +2,7 @@
* This is to generate the umd bundle only
*/
const _ = require('lodash');
-const webpack = require('webpack');
-const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
+const TerserPlugin = require('terser-webpack-plugin');
const path = require('path');
const production = process.env.NODE_ENV === 'production';
@@ -16,6 +15,7 @@ if (production) {
module.exports = {
entry,
+ mode: 'production',
output: {
path: path.resolve(__dirname, '_bundles'),
filename: '[name].js',
@@ -27,19 +27,18 @@ module.exports = {
extensions: ['.ts', '.js', '.json'],
},
devtool: 'source-map',
- plugins: [
- // TODO: Revert to webpack bundled version with webpack v4.
- // The v3 series bundled version does not support ES6 and
- // fails to build.
- new UglifyJsPlugin({
- sourceMap: true,
- uglifyOptions: {
- mangle: {
- reserved: ['BigNumber'],
+ optimization: {
+ minimizer: [
+ new TerserPlugin({
+ sourceMap: true,
+ terserOptions: {
+ mangle: {
+ reserved: ['BigNumber'],
+ },
},
- },
- }),
- ],
+ }),
+ ],
+ },
module: {
rules: [
{
@@ -59,10 +58,6 @@ module.exports = {
],
exclude: /node_modules/,
},
- {
- test: /\.json$/,
- loader: 'json-loader',
- },
],
},
};