forked from ChurnDownForWhat/butter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
84 lines (80 loc) · 1.66 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
const path = require('path')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const webpack = require('webpack')
const merge = require('webpack-merge')
const common = {
entry: [
path.resolve(__dirname, 'client')
],
output: {
path: path.resolve(__dirname, 'public'),
filename: 'bundle.js',
publicPath: '/'
},
resolve: {
extensions: ['.jsx', '.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'
},
{
test: /\.less$/,
loader: 'style!css!less'
}
]
},
plugins: [
new ExtractTextPlugin('styles.css'),
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.NoErrorsPlugin()
]
}
//config for dev setup
const devConfig = {
devtool: 'source-maps'
}
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
// }
// })
// ]
}
const target = process.env.npm_lifecycle_event
switch (target) {
case 'dev':
module.exports = merge(common, devConfig)
break
default:
module.exports = merge(common, prodConfig)
break
}