Skip to content

Commit

Permalink
release v6.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saqqdy committed Mar 17, 2024
1 parent 53ed0c9 commit 9b5f6f2
Show file tree
Hide file tree
Showing 10 changed files with 392 additions and 378 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 更新日志

## 2024.03.17 v6.4.0

1. 优化提示信息
2. 升级依赖包

## 2024.03.01 v6.3.0

1. `admin` `combine` 指令增加构建提示
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gitmars/monorepo",
"description": "这是一个git工作流工具",
"version": "6.3.0",
"version": "6.4.0",
"packageManager": "pnpm@8.7.4",
"main": "index.js",
"files": [
Expand Down Expand Up @@ -47,7 +47,7 @@
"chalk": "^4.1.2",
"debug": "^4.3.4",
"inquirer": "^8.2.5",
"js-cool": "^5.17.1",
"js-cool": "^5.18.1",
"morgan": "^1.10.0",
"os-lang": "^3.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gitmars/core",
"description": "gitmars核心程序",
"version": "6.3.0",
"version": "6.4.0",
"private": false,
"main": "./lib/index.js",
"module": "./lib/index.mjs",
Expand Down Expand Up @@ -59,7 +59,7 @@
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"inquirer": "^8.2.5",
"js-cool": "^5.17.1",
"js-cool": "^5.18.1",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.3",
"node-apollo": "^1.2.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@gitmars/docs",
"description": "gitmars文档库",
"version": "6.3.0",
"version": "6.4.0",
"private": false,
"files": [
"dist",
Expand All @@ -24,7 +24,7 @@
"typings": "typings"
},
"dependencies": {
"js-cool": "^5.17.1"
"js-cool": "^5.18.1"
},
"devDependencies": {
"@eslint-sets/eslint-config-vue3": "^5.12.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/gitmars/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gitmars",
"description": "这是一个git工作流工具",
"version": "6.3.0",
"version": "6.4.0",
"private": false,
"bin": {
"gitm": "lib/gitm.mjs"
Expand Down Expand Up @@ -64,7 +64,7 @@
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"inquirer": "^8.2.5",
"js-cool": "^5.17.1",
"js-cool": "^5.18.1",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.3",
"node-apollo": "^1.2.1",
Expand Down
5 changes: 2 additions & 3 deletions packages/gitmars/src/gitm-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,9 @@ program.action(async (project: string, opt: GitmBuildOption): Promise<void> => {
opt.app
)}`

if ('build_api_env' in data)
message += `\n${t('Interface Environment')}: ${red(data.build_api_env)}`
message += `\n${t('Interface Environment')}: ${red(data.build_api_env || 'production')}`
if ('mini_program' in data)
message += `\n${t('Experience version pushed to')}: ${red(data.mini_program)}`
message += `\n${t('Experience version pushed to')}: ${red(data.mini_program || t('Push to templates only'))}`
if ('description' in data)
message += `\n${t('Version Description')}: ${red(data.description)}`
if ('clean' in data)
Expand Down
Loading

0 comments on commit 9b5f6f2

Please sign in to comment.