feat: 增加版本20

This commit is contained in:
gaoxiaolin.gao 2018-07-18 19:26:37 +08:00
parent bb59bcb16e
commit 14e5bde0d2
3 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,11 @@
### v1.3.20
#### Bug Fixed
* 修复 ykit 打包代码问题
* 修复 swagger url 导入选中后再切换其他数据方式时拖拽区域不出现问题
* 修复 wiki controller 后端报错问题
### v1.3.19
* 增加项目文档记录wiki

View File

@ -1,6 +1,6 @@
{
"name": "yapi",
"version": "1.3.19",
"version": "1.3.20",
"description": "YAPI",
"main": "index.js",
"scripts": {

View File

@ -192,6 +192,13 @@ module.exports = {
});
if (this.env == 'prd') {
baseConfig.plugins.push(
new this.webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
})
);
baseConfig.plugins.push(assetsPluginInstance);
baseConfig.plugins.push(compressPlugin);
}