-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
77 lines (72 loc) · 1.52 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
'use strict';
const path = require('path');
const webpack = require('webpack');
const libraryName = 'MobxReactRouter';
const env = process.env.NODE_ENV || 'development';
const isDev = env === 'development';
const shouldMinify = Boolean(process.env.MINIFY);
let outputFile;
const plugins = [
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(env)
}),
new webpack.optimize.OccurrenceOrderPlugin()
];
if (shouldMinify) {
plugins.push(new webpack.optimize.UglifyJsPlugin(
{
minimize: true,
compress: {
warnings: false
},
mangle: true
}
));
outputFile = 'mst-react-router.min.js';
} else {
outputFile = 'mst-react-router.js';
}
module.exports = {
devtool: isDev ? 'source-map' : false,
entry: [path.resolve(__dirname, 'index.js')],
output: {
path: path.resolve(__dirname, 'dist'),
filename: outputFile,
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true
},
externals: [
{
'mobx': {
root: 'mobx',
commonjs2: 'mobx',
commonjs: 'mobx',
amd: 'mobx'
}
},
{
'mobx-state-tree': {
root: 'mobxStateTree',
commonjs2: 'mobx-state-tree',
commonjs: 'mobx-state-tree',
amd: 'mobx-state-tree'
}
}
],
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
'babel-loader?cacheDirectory'
]
}
]
},
resolve: {
extensions: ['.js']
},
plugins: plugins
};