-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathwebpack.config.js
69 lines (68 loc) · 1.89 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
var path = require('path');
var webpack = require('webpack');
module.exports = {
// context: path.join(__dirname, 'dev'),
// entry: All modules are loaded upon startup. The last one is exported.
entry: [
'babel-polyfill',
'./js/containers/app',
],
debug: false,
output: {
path: path.join(__dirname, 'dist'),
filename: 'phandango.js',
publicPath: '/',
},
plugins: [
new webpack.DefinePlugin({ // MUST BE FIRST!
'process.env': {
'NODE_ENV': '"production"',
},
}),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.optimize.UglifyJsPlugin({ // https://github.com/mishoo/UglifyJS2#usage
sourceMap: true, // only for display during compilation i think
mangle: true, // 890kb -> 580kb
compressor: { // these are only minor size savings
warnings: false,
sequences: true,
conditionals: true,
unused: true,
if_return: true,
drop_console: true,
dead_code: true,
drop_debugger: true,
unsafe: false, // would save 1kb
},
minimize: true,
'screw-ie8': true,
}),
],
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
// to avoid having a .babelrc we can write
// loaders: [ 'babel?presets[]=es2015&presets[]=react' ],
// but we need the .babelrc for mocha, so
loaders: [ 'babel' ],
// note we can't have queries as there are multiple loaders
include: path.join(__dirname, 'js'),
}, {
test: /\.css?$/,
loaders: [ 'style', 'raw' ],
include: __dirname,
},
],
},
resolve: {
extensions: [ '', '.js', '.jsx' ],
fallback: path.join(__dirname, 'node_modules'),
},
resolveLoader: {
root: path.join(__dirname, 'node_modules'),
},
exclude: path.resolve(__dirname, 'node_modules'),
};