4a7f28fd
Sergio Crisostomo
eslint and replac...
|
1
2
3
|
const path = require('path');
const webpack = require('webpack');
const entry = require('./locale');
|
a3a725a1
Lawrence Lee
add locale packag...
|
4
5
6
|
process.env.NODE_ENV = 'production';
module.exports = {
|
aaf900f3
Lawrence Lee
update locale pac...
|
7
|
entry,
|
a3a725a1
Lawrence Lee
add locale packag...
|
8
9
10
11
12
13
14
|
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
}
|
4a7f28fd
Sergio Crisostomo
eslint and replac...
|
15
|
]
|
a3a725a1
Lawrence Lee
add locale packag...
|
16
17
18
19
20
21
22
23
24
|
},
output: {
path: path.resolve(__dirname, '../dist/locale'),
publicPath: '/dist/locale/',
filename: '[name].js',
library: 'iview/locale',
libraryTarget: 'umd',
umdNamedDefine: true
},
|
54f510c5
梁灏
fixed not support...
|
25
26
27
28
29
30
31
32
|
externals: {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
}
},
|
a3a725a1
Lawrence Lee
add locale packag...
|
33
34
35
36
37
|
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
|
593742af
梁灏
update locale bui...
|
38
39
40
41
42
|
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
|
a3a725a1
Lawrence Lee
add locale packag...
|
43
44
|
})
]
|
4a7f28fd
Sergio Crisostomo
eslint and replac...
|
45
|
};
|