mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
Merge branch 'master' of https://github.com/WeBankFinTech/fes.js
This commit is contained in:
commit
6e374d99d1
@ -2,6 +2,12 @@
|
||||
|
||||
<!-- DO NOT CHANGE THESE COMMENTS - See .github/actions/trigger-github-release/update-changelog.js -->
|
||||
<!-- insert-new-changelog-here -->
|
||||
## [0.2.2](https://github.com/WeBankFinTech/fes/compare/v0.2.1...v0.2.2) (2020-09-23)
|
||||
|
||||
|
||||
### :bug: Bug Fix
|
||||
|
||||
* 解决fes-cli build 异常 ([cbbc29f](https://github.com/WeBankFinTech/fes/commit/cbbc29f)) by: **bac-joker**, closes [#20](https://github.com/WeBankFinTech/fes.js/issues/20)
|
||||
## [0.2.1](https://github.com/WeBankFinTech/fes/compare/v0.2.0...v0.2.1) (2020-09-20)
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"changelog": {
|
||||
"repo": "WeBankFinTech/fes.js",
|
||||
"cacheDir": ".changelog",
|
||||
|
47
package.json
47
package.json
@ -48,5 +48,52 @@
|
||||
"commitizen": {
|
||||
"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) {
|
||||
if (!compress) return null;
|
||||
if (!compress) return false;
|
||||
if (typeof compress === 'boolean') {
|
||||
return {};
|
||||
}
|
||||
|
2
packages/fes-cli/package-lock.json
generated
2
packages/fes-cli/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@webank/fes-cli",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@webank/fes-cli",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.2",
|
||||
"description": "一个好用的前端管理台快速开发框架",
|
||||
"preferGlobal": true,
|
||||
"scripts": {
|
||||
|
@ -55,6 +55,10 @@ module.exports = {
|
||||
FesLeft: true,
|
||||
// 是否显示头部区域,默认为false
|
||||
FesHeader: false,
|
||||
// 是否开启路由懒加载
|
||||
lazyRouter: false,
|
||||
// 是否开启 gzip 压缩,也可以传一个 obj 声明压缩参数
|
||||
compress: false,
|
||||
// 环境变量配置, 默认使用local环境
|
||||
env: {
|
||||
// 本地开发环境
|
||||
|
Loading…
x
Reference in New Issue
Block a user