-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathwebpack.config.js
70 lines (65 loc) · 1.29 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
/**
* @author oldj
* @blog https://oldj.net
*/
'use strict'
const path = require('path')
const webpack = require('webpack')
const moment = require('moment')
const config = {
base: {
entry: {
'bundle': './js/index.js'
},
output: {
path: path.join(__dirname, 'build'),
filename: '[name].js',
library: '[name]',
libraryTarget: 'umd'
},
devtool: 'source-map',
module: {
rules: [{
test: /\.js$/,
loader: ['es3ify-loader', 'babel-loader'],
exclude: /node_modules/
}]
},
plugins: []
},
dev: {
plugins: [],
devServer: {
host: '0.0.0.0',
disableHostCheck: true
}
},
test: {
plugins: []
},
prod: {
plugins: [
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
output: {
ascii_only: true,
quote_keys: true,
screw_ie8: false
},
compress: {
warnings: false,
//drop_console: true,
properties: false,
screw_ie8: false
},
mangle: {
screw_ie8: false
}
}),
new webpack.BannerPlugin(`[name].js ${moment().format('YYYY-MM-DD HH:mm:ss')}`)
]
}
}
module.exports = function (env) {
return Object.assign(config.base, config[env])
}