-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
111 lines (101 loc) · 2.57 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
var path = require('path');
var TARGET = process.env.TARGET;
var ROOT_PATH = path.resolve(__dirname);
var APP_PATH = path.resolve(ROOT_PATH, 'app');
var DIST_PATH = path.resolve(ROOT_PATH, 'dist');
var NODEMODULES_PATH = path.resolve(ROOT_PATH, 'node_modules');
var webpack = require('webpack');
var merge = require('webpack-merge');
var Clean = require('clean-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin')
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var common = {
entry: {
bundle: path.resolve(APP_PATH, 'main'),
vendors: ['react'] // And other vendors
},
resolve: {
extensions: ['', '.js', '.jsx']
},
output: {
path: DIST_PATH,
filename: 'bundle.js',
},
module: {
loaders: []
},
plugins: [
new HtmlWebpackPlugin(), // Generates index.hml in 'output' path
new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js') // Generates a vendors.js for external libraries
]
};
var deps = [];
if (TARGET === 'development') {
var config = {
resolve: {
alias: {}
},
module: {
loaders: [{
test: /\.css$/, // Only .css files
loader: 'style!css', // Run both loaders
include: APP_PATH
}, {
test: /\.(js|jsx)?$/,
loaders: ['react-hot', 'babel?stage=0'],
include: APP_PATH
}],
noParse: []
},
devtool: 'eval',
devServer: {
inline: true,
colors: true,
historyApiFallback: true,
hot: true,
progress: true,
port: 4000
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
}
deps.forEach(function(dep) {
var depPath = path.resolve(NODEMODULES_PATH, dep);
config.resolve.alias[dep.split(path.sep)[0]] = depPath;
config.module.noParse.push(depPath);
});
module.exports = merge(common, config);
}
if (TARGET === 'production') {
var config = {
module: {
loaders: [{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style', 'css'),
include: APP_PATH
}, {
test: /\.(js|jsx)?$/,
loaders: ['babel?stage=0'],
include: APP_PATH
}]
},
plugins: [
new Clean(['dist']),
new ExtractTextPlugin('styles.css'),
new webpack.DefinePlugin({
'process.env': {
// This affects react lib size
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
})
]
}
module.exports = merge(common, config);
}