-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
41 lines (39 loc) · 1005 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
var webpack = require('webpack');
var path = require('path');
var env = require('yargs').argv.mode;
var libraryName = 'Collision2D';
var plugins = env === 'build' ? [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({
compressor: {screw_ie8: true, keep_fnames: true, warnings: false},
mangle: {screw_ie8: true, keep_fnames: true},
}),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.optimize.AggressiveMergingPlugin(),
] : [];
var config = {
entry: __dirname + '/src/Collision2D.js',
devtool: 'source-map',
output: {
path: __dirname + '/lib',
filename: 'c2d.js',
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true,
},
module: {
loaders: [
{
test: /(\.jsx|\.js)$/,
loader: 'babel',
exclude: /(node_modules|bower_components)/,
},
],
},
resolve: {
root: path.resolve('./src'),
extensions: ['', '.js'],
},
plugins: plugins,
};
module.exports = config;