-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
82 lines (80 loc) · 2.08 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
var
webpack = require('webpack'),
path = require('path'),
dir = path.resolve(__dirname,'dist');
module.exports = [
];
config('var',''),
config('commonjs2','node'),
config('amd'),
config('umd')
function config (target,optionalName) {
optionalName = optionalName !== '' ? ('.'+(optionalName || target)) : '';
module.exports.push({
entry : {
app : ['./libs/c2.js']
},
externals : {
d3: {
commonjs: "d3",
commonjs2: "d3",
amd: "d3",
root: "d3",
global: "d3"
}
},
output : {
path : dir,
publicPath : '/dist/',
library : 'c2',
libraryTarget : target,
filename : 'c2'+optionalName +'.js'
},
module : {
loaders : [{
loader : 'babel-loader',
include : [path.resolve(__dirname,'libs')],
test : /\.js?$/,
query : {
plugins : ['transform-runtime'],
presets : ['es2015']
}
}]
}
});
module.exports.push({
entry : {
app : ['./libs/c2.js']
},
externals : {
d3: {
commonjs: "d3",
commonjs2: "d3",
amd: "d3",
root: "d3",
global: "d3"
}
},
output : {
path : dir,
publicPath : '/dist/',
library : 'c2',
libraryTarget : target,
filename : 'c2'+optionalName+'.min.js'
},
module : {
loaders : [{
loader : 'babel-loader',
include : [path.resolve(__dirname,'libs')],
test : /\.js?$/,
query : {
plugins: ['transform-runtime'],
presets : ['es2015']
}
}]
}
//plugins : [
//new webpack.optimize.UglifyJsPlugin({minimize:true})
//]
});
}