@gmcb/cli 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/schema.json +38 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.1.10](https://git.keeprisk.cn/zhifuqihuang/platform-web/front-end/compare/@gmcb/cli@0.1.9...@gmcb/cli@0.1.10) (2025-10-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @gmcb/cli
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.1.9](https://git.keeprisk.cn/gmcb/front-end/compare/@gmcb/cli@0.1.8...@gmcb/cli@0.1.9) (2025-08-17)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @gmcb/cli
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gmcb/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "工茂草本前端命令行工具",
|
|
5
5
|
"author": "yinjiazeng@163.com",
|
|
6
6
|
"license": "MIT",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"@types/rimraf": "^4.0.5",
|
|
55
55
|
"@types/user-home": "^2.0.2"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "b573cc88a1a2217221bd80ec9120f0ecd2a488ad"
|
|
58
58
|
}
|
package/schema.json
CHANGED
|
@@ -16,6 +16,44 @@
|
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
|
+
"user": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"description": "管理平台配置",
|
|
22
|
+
"properties": {
|
|
23
|
+
"username": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "登录用户名"
|
|
26
|
+
},
|
|
27
|
+
"password": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "登录密码"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": ["username", "password"]
|
|
33
|
+
},
|
|
34
|
+
"version": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"description": "版本管理配置",
|
|
37
|
+
"properties": {
|
|
38
|
+
"brandName": {
|
|
39
|
+
"type": "string",
|
|
40
|
+
"description": "品牌名称"
|
|
41
|
+
},
|
|
42
|
+
"type": {
|
|
43
|
+
"type": "number",
|
|
44
|
+
"description": "应用类型"
|
|
45
|
+
},
|
|
46
|
+
"status": {
|
|
47
|
+
"type": "number",
|
|
48
|
+
"description": "更新状态"
|
|
49
|
+
},
|
|
50
|
+
"platform": {
|
|
51
|
+
"type": "number",
|
|
52
|
+
"description": "平台类型"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"required": ["brandName", "appName", "type", "status", "platform"]
|
|
56
|
+
},
|
|
19
57
|
"cos": {
|
|
20
58
|
"type": "object",
|
|
21
59
|
"description": "腾讯云对象存储配置",
|