mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
parent
9b9f8c2150
commit
f175c7474f
47
package.json
47
package.json
@ -48,5 +48,52 @@
|
|||||||
"commitizen": {
|
"commitizen": {
|
||||||
"path": "./node_modules/cz-conventional-changelog"
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"changelog": {
|
||||||
|
"bugsUrl": "https://github.com/WeBankFinTech/fes.js/issues/",
|
||||||
|
"authorName": true,
|
||||||
|
"authorEmail": false,
|
||||||
|
"settings": {
|
||||||
|
"feat": {
|
||||||
|
"title": ":rocket: New Feature",
|
||||||
|
"enable": true
|
||||||
|
},
|
||||||
|
"fix": {
|
||||||
|
"title": ":bug: Bug Fix"
|
||||||
|
},
|
||||||
|
"perf": {
|
||||||
|
"title": ":running_woman: Performance"
|
||||||
|
},
|
||||||
|
"revert": {
|
||||||
|
"title": ":leftwards_arrow_with_hook: Revert"
|
||||||
|
},
|
||||||
|
"refactor": {
|
||||||
|
"title": "♻ 代码重构"
|
||||||
|
},
|
||||||
|
"docs": {
|
||||||
|
"title": ":memo: Documentation",
|
||||||
|
"enable": true
|
||||||
|
},
|
||||||
|
"style": {
|
||||||
|
"title": ":eyeglasses: Spec Compliance",
|
||||||
|
"enable": true
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"title": "✅ 测试",
|
||||||
|
"enable": false
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"title": "👷 构建",
|
||||||
|
"enable": false
|
||||||
|
},
|
||||||
|
"ci": {
|
||||||
|
"title": "🔧 CI 配置",
|
||||||
|
"enable": false
|
||||||
|
},
|
||||||
|
"chore": {
|
||||||
|
"title": "🎫 其他更新",
|
||||||
|
"enable": false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@ const browsers = require('../helpers/browser');
|
|||||||
|
|
||||||
|
|
||||||
function handleGzipCompress(compress) {
|
function handleGzipCompress(compress) {
|
||||||
if (!compress) return null;
|
if (!compress) return false;
|
||||||
if (typeof compress === 'boolean') {
|
if (typeof compress === 'boolean') {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
@ -55,6 +55,10 @@ module.exports = {
|
|||||||
FesLeft: true,
|
FesLeft: true,
|
||||||
// 是否显示头部区域,默认为false
|
// 是否显示头部区域,默认为false
|
||||||
FesHeader: false,
|
FesHeader: false,
|
||||||
|
// 是否开启路由懒加载
|
||||||
|
lazyRouter: false,
|
||||||
|
// 是否开启 gzip 压缩,也可以传一个 obj 声明压缩参数
|
||||||
|
compress: false,
|
||||||
// 环境变量配置, 默认使用local环境
|
// 环境变量配置, 默认使用local环境
|
||||||
env: {
|
env: {
|
||||||
// 本地开发环境
|
// 本地开发环境
|
||||||
|
Loading…
x
Reference in New Issue
Block a user