-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
executable file
·138 lines (134 loc) · 4.17 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
const path = require('path');
const webpack = require('webpack');
const CompressionPlugin = require('compression-webpack-plugin');
const ClosureCompilerPlugin = require('webpack-closure-compiler');
const StatsWriterPlugin = require('webpack-stats-plugin').StatsWriterPlugin;
const ManifestPlugin = require('webpack-manifest-plugin');
const ShakePlugin = require('webpack-common-shake').Plugin;
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin');
const rollupPluginNodeResolve = require('rollup-plugin-node-resolve');
const prod = process.env.NODE_ENV == 'production';
const dev = !prod && process.env.DEV !== '0';
const analyze = process.env.NODE_ENV == 'analyze';
const useRollup = process.env.ROLLUP == '1';
const useShakePlugin = prod || process.env.SHAKE == '1';
const useClosureCompiler = process.env.CLOSURE === '1';
let publicUrl = '';
module.exports = {
context: __dirname,
entry: useRollup ? './lib/es6/src/index' : './lib/js/src/index',
output: {
filename: '[name].js',
path: path.join(__dirname, './dist/build'),
publicPath: '/build/',
},
devServer: {
contentBase: path.resolve(__dirname, 'public'),
historyApiFallback: true
},
resolve: {
alias: {
src: path.resolve(__dirname, 'src/'),
director: 'director/build/director',
},
},
module: {
rules: [
{
test: /\.png$/,
loader: 'file-loader',
},
{
test: /\.css$/,
use: [{loader: 'style-loader'}, {loader: 'css-loader'}],
},
useRollup
? {
test: /\.js$/,
loader: 'rollup-loader',
options: {
plugins: [rollupPluginNodeResolve({module: true})],
},
}
: null,
].filter(Boolean),
},
node: {
fs: 'empty',
net: 'empty',
tls: 'empty',
},
plugins: [
// Generate a service worker script that will precache, and keep up to date,
// the HTML & assets that are part of the Webpack build.
new SWPrecacheWebpackPlugin({
// By default, a cache-busting query parameter is appended to requests
// used to populate the caches, to ensure the responses are fresh.
// If a URL is already hashed by Webpack, then there is no concern
// about it being stale, and the cache-busting can be skipped.
dontCacheBustUrlsMatching: /\.\w{8}\./,
filename: 'service-worker.js',
minify: prod || analyze,
navigateFallback: publicUrl + '/index.html',
staticFileGlobsIgnorePatterns: [/\.map$/, /asset-manifest\.json$/],
}),
// Generate a manifest file which contains a mapping of all asset filenames
// to their corresponding output file so that tools can pick it up without
// having to parse `index.html`.
new ManifestPlugin({
fileName: 'asset-manifest.json',
}),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(!dev ? 'production' : null),
PUBLIC_URL: JSON.stringify(publicUrl + '/build'),
},
}),
useClosureCompiler
? new ClosureCompilerPlugin({
compiler: {
language_in: 'ECMASCRIPT6',
language_out: 'ECMASCRIPT5',
},
concurrency: 3,
})
: null,
prod ? new UglifyJsPlugin() : null,
analyze
? new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
},
output: {
comments: /^\**!|^ [0-9]+ $|@preserve|@license/,
},
}
})
: null,
true
? new CompressionPlugin({
// asset: '[path].gz[query]',
algorithm: 'gzip',
test: /\.(js|css)$/,
threshold: 10240,
minRatio: 0.8,
})
: null,
true
? new StatsWriterPlugin({
filename: 'stats.json',
fields: null,
transform: function(data) {
data.modules.forEach(function(m) {
delete m.source;
});
delete data.children;
return JSON.stringify(data, null, 2);
},
})
: null,
useShakePlugin ? new ShakePlugin() : null,
].filter(Boolean),
};