-
Notifications
You must be signed in to change notification settings - Fork 13
/
webpack.config.js
executable file
·55 lines (54 loc) · 1.49 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
var webpack = require('webpack');
var resolve = require('path').resolve;
var CompressionPlugin = require('compression-webpack-plugin');
module.exports = (env) => {
env = env || {};
var addPlugin = (add, plugin) => add ? plugin : undefined;
var ifProd = plugin => addPlugin(env.prod, plugin);
var removeEmpty = array => array.filter(i => !!i);
return {
entry: './index.js',
target: 'node',
output: {
library: 'gccx',
libraryTarget: 'umd',
},
context: resolve(__dirname, 'src'),
devtool: env.prod ? 'source-map' : 'eval',
bail: !!env.prod,
module: {
loaders: [{
test: /\.js$/,
loaders: ['babel-loader'],
exclude: [/node_modules/, /language.js/],
}],
},
plugins: removeEmpty([
new webpack.optimize.OccurrenceOrderPlugin(),
ifProd(new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
quiet: true,
})),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(ifProd('production') || 'development'),
}),
ifProd(new webpack.optimize.UglifyJsPlugin({
compress: {
pure_getters: true,
unsafe: true,
unsafe_comps: true,
warnings: false,
screw_ie8: true,
},
})),
ifProd(new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: /\.js$|\.css$|\.html$/,
threshold: 10240,
minRatio: 0.8,
})),
]),
};
};