-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
69 lines (67 loc) · 1.76 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
/* eslint-disable */
var webpack = require("webpack");
var resolve = require("path").resolve;
var CompressionPlugin = require("compression-webpack-plugin");
// var PrepackWebpackPlugin = require("prepack-webpack-plugin").default;
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",
output: {
library: "ReactTablify",
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/]
}
]
},
plugins: removeEmpty([
new webpack.optimize.OccurrenceOrderPlugin(),
ifProd(new webpack.optimize.DedupePlugin()),
ifProd(
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false,
quiet: true
})
),
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify(
ifProd("production") || "development"
)
}),
// new PrepackWebpackPlugin({}),
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
})
)
])
};
};