forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
81 lines (75 loc) · 1.97 KB
/
webpack.prod.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// node modules
const { merge } = require('webpack-merge');
const moment = require('moment');
const webpack = require('webpack');
const TerserPlugin = require("terser-webpack-plugin");
// webpack plugins
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin;
// config files
const common = require('./webpack.common.js');
const settings = require('./webpack.settings.js');
// Configure file banner
function configureBanner() {
return {
banner: [
'/*!',
` * @project ${settings.name}`,
` * @build ${moment().format('llll')} ET`,
` * @copyright Copyright (c) ${moment().format('YYYY')} ${
settings.copyright
}`,
' *',
' */',
'',
].join('\n'),
raw: true,
};
}
// Configure Bundle Analyzer
function configureBundleAnalyzer(name) {
return {
analyzerMode: 'static',
reportFilename: `${name}-bundle.html`,
openAnalyzer: settings.options.openAnalyzer(),
generateStatsFile: false,
};
}
// Configure optimization
function configureOptimization() {
return {
minimize: true,
minimizer: [
new TerserPlugin({
exclude: [
// do not minify Sources/ and Utilities/ dirs
/Sources\//,
/Utilities\//,
],
}),
],
};
}
// Production module exports
module.exports = [
merge(common.baseConfig, {
mode: 'production',
devtool: 'source-map',
optimization: configureOptimization(),
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.BannerPlugin(configureBanner()),
new BundleAnalyzerPlugin(configureBundleAnalyzer('vtk')),
],
}),
merge(common.liteConfig, {
mode: 'production',
devtool: 'source-map',
optimization: configureOptimization(),
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.BannerPlugin(configureBanner()),
new BundleAnalyzerPlugin(configureBundleAnalyzer('vtk-lite')),
],
}),
];