forked from gentijo/Winterfell
-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
43 lines (42 loc) · 924 Bytes
/
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
const webpack = require('webpack');
const path = require('path');
module.exports = {
context : __dirname + '/src',
entry : {
javascript : './index.js'
},
module : {
loaders : [
{
test: /\.css$/,
loaders: [
'style-loader', 'css-loader', 'resolve-url-loader'
],
},
{
test : /\.js$/,
exclude : /node_modules/,
loaders : ['babel-loader'],
}
],
},
externals : {
'react' : 'React',
'react/addons' : 'React'
},
output : {
libraryTarget : 'var',
library : 'Winterfell',
filename : 'winterfell.min.js',
path : __dirname + '/dist'
},
plugins : [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({
compress : {
warnings : false
}
})
]
};