Skip to content

Commit 9b5f6f2

Browse files
committed
release v6.4.0
1 parent 53ed0c9 commit 9b5f6f2

File tree

10 files changed

+392
-378
lines changed

10 files changed

+392
-378
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# 更新日志
22

3+
## 2024.03.17 v6.4.0
4+
5+
1. 优化提示信息
6+
2. 升级依赖包
7+
38
## 2024.03.01 v6.3.0
49

510
1. `admin` `combine` 指令增加构建提示

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitmars/monorepo",
33
"description": "这是一个git工作流工具",
4-
"version": "6.3.0",
4+
"version": "6.4.0",
55
"packageManager": "[email protected]",
66
"main": "index.js",
77
"files": [
@@ -47,7 +47,7 @@
4747
"chalk": "^4.1.2",
4848
"debug": "^4.3.4",
4949
"inquirer": "^8.2.5",
50-
"js-cool": "^5.17.1",
50+
"js-cool": "^5.18.1",
5151
"morgan": "^1.10.0",
5252
"os-lang": "^3.2.0"
5353
},

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitmars/core",
33
"description": "gitmars核心程序",
4-
"version": "6.3.0",
4+
"version": "6.4.0",
55
"private": false,
66
"main": "./lib/index.js",
77
"module": "./lib/index.mjs",
@@ -59,7 +59,7 @@
5959
"dayjs": "^1.11.10",
6060
"debug": "^4.3.4",
6161
"inquirer": "^8.2.5",
62-
"js-cool": "^5.17.1",
62+
"js-cool": "^5.18.1",
6363
"lodash-es": "^4.17.21",
6464
"lodash-unified": "^1.0.3",
6565
"node-apollo": "^1.2.1",

packages/docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@gitmars/docs",
33
"description": "gitmars文档库",
4-
"version": "6.3.0",
4+
"version": "6.4.0",
55
"private": false,
66
"files": [
77
"dist",
@@ -24,7 +24,7 @@
2424
"typings": "typings"
2525
},
2626
"dependencies": {
27-
"js-cool": "^5.17.1"
27+
"js-cool": "^5.18.1"
2828
},
2929
"devDependencies": {
3030
"@eslint-sets/eslint-config-vue3": "^5.12.0",

packages/gitmars/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gitmars",
33
"description": "这是一个git工作流工具",
4-
"version": "6.3.0",
4+
"version": "6.4.0",
55
"private": false,
66
"bin": {
77
"gitm": "lib/gitm.mjs"
@@ -64,7 +64,7 @@
6464
"dayjs": "^1.11.10",
6565
"debug": "^4.3.4",
6666
"inquirer": "^8.2.5",
67-
"js-cool": "^5.17.1",
67+
"js-cool": "^5.18.1",
6868
"lodash-es": "^4.17.21",
6969
"lodash-unified": "^1.0.3",
7070
"node-apollo": "^1.2.1",

packages/gitmars/src/gitm-build.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,9 @@ program.action(async (project: string, opt: GitmBuildOption): Promise<void> => {
4747
opt.app
4848
)}`
4949

50-
if ('build_api_env' in data)
51-
message += `\n${t('Interface Environment')}: ${red(data.build_api_env)}`
50+
message += `\n${t('Interface Environment')}: ${red(data.build_api_env || 'production')}`
5251
if ('mini_program' in data)
53-
message += `\n${t('Experience version pushed to')}: ${red(data.mini_program)}`
52+
message += `\n${t('Experience version pushed to')}: ${red(data.mini_program || t('Push to templates only'))}`
5453
if ('description' in data)
5554
message += `\n${t('Version Description')}: ${red(data.description)}`
5655
if ('clean' in data)

0 commit comments

Comments
 (0)