forked from TEAManticore/Line4Line
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
90 lines (78 loc) · 1.74 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
const path = require('path');
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const webpack = require('webpack');
const merge = require('webpack-merge');
// common config across dev and prod setups
const common = {
entry: path.join(__dirname, 'client'),
output: {
path: path.join(__dirname, 'server', 'public'),
filename: 'bundle.js'
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ["es2015", "react"]
}
},
{
test: /\.json$/,
loader: 'json-loader'
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
},
{
test: /\.png$/,
loader: "file-loader"
}
]
},
plugins: [
new ExtractTextPlugin('styles.css')
]
};
// config for a dev setup
const devConfig = {
devtool: 'source-maps',
devServer: {
inline: true,
hot: true,
historyApiFallback: true
}
};
const prodConfig = {
devtool: 'source-maps',
// plugins: [
// new webpack.optimize.UglifyJsPlugin({
// beautify: false,
// comments: false,
// compress: {
// warnings: false,
// },
// mangle: {
// except: ['$'],
// screw_ie8: true,
// keep_fnames: true
// }
// })
// ]
};
// export config for prod or dev based on npm
// command ran
// npm run dev would do development build
// npm run build would do production build
const target = process.env.npm_lifecycle_event;
switch (target) {
case 'dev' :
module.exports = merge(common, devConfig);
break;
default :
module.exports = merge(common, prodConfig);
break;
}