forked from makerdao/dai.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
54 lines (51 loc) · 1.21 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
const fs = require('fs');
const pkg = JSON.parse(
fs.readFileSync(path.join(process.cwd(), 'package.json'), 'utf8')
);
module.exports = {
mode: 'production',
entry: ['./src/index.js'],
output: {
path: path.join(process.cwd(), 'umd'),
filename: 'index.js',
sourceMapFilename: 'index.js.map',
library: pkg.name,
libraryTarget: 'umd'
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.(t|j)s$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
plugins: ['@babel/plugin-transform-modules-commonjs']
}
}
}
]
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
parallel: 4,
sourceMap: true,
terserOptions: {
keep_fnames: true,
module: true
}
})
]
}
};
if (process.env.ANALYZE_BUNDLE) {
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
module.exports.plugins = module.exports.plugins
? module.exports.plugins.concat([new BundleAnalyzerPlugin()])
: [new BundleAnalyzerPlugin()];
}