@soybeanjs/cli 0.2.7 → 0.2.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/README.md +11 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -20,16 +20,17 @@ pnpm soy -h
|
|
|
20
20
|
|
|
21
21
|
## 命令介绍
|
|
22
22
|
|
|
23
|
-
| 命令 | 作用
|
|
24
|
-
| ----------------- |
|
|
25
|
-
| help | 查看全部命令用法
|
|
26
|
-
| git-commit | 生成符合 Angular 规范的 git 提交信息
|
|
27
|
-
| git-commit-verify | 校验 git 的提交信息是否符合 Angular 规范
|
|
28
|
-
| cleanup | 清空依赖和构建产物
|
|
29
|
-
| cleanup-deep | 清空依赖和构建产物(包含 深层级)
|
|
30
|
-
| init-git-hooks | 初始化 simple-gi t-hooks 钩子
|
|
31
|
-
| update-pkg | 升级依赖
|
|
32
|
-
| prettier-format | prettier 格式化
|
|
23
|
+
| 命令 | 作用 |
|
|
24
|
+
| ----------------- | --------------------------------------------- |
|
|
25
|
+
| help | 查看全部命令用法 |
|
|
26
|
+
| git-commit | 生成符合 Angular 规范的 git 提交信息 |
|
|
27
|
+
| git-commit-verify | 校验 git 的提交信息是否符合 Angular 规范 |
|
|
28
|
+
| cleanup | 清空依赖和构建产物 |
|
|
29
|
+
| cleanup-deep | 清空依赖和构建产物(包含 深层级) |
|
|
30
|
+
| init-git-hooks | 初始化 simple-gi t-hooks 钩子 |
|
|
31
|
+
| update-pkg | 升级依赖 |
|
|
32
|
+
| prettier-format | prettier 格式化 |
|
|
33
|
+
| release | 版本发布,自动变更版本,生成日志 CHANGELOG.md |
|
|
33
34
|
|
|
34
35
|
### prettier-format
|
|
35
36
|
|
|
@@ -51,4 +52,3 @@ pnpm soy -h
|
|
|
51
52
|
- pnpm-lock.yaml
|
|
52
53
|
- yarn.lock
|
|
53
54
|
- **snapshots**
|
|
54
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
4
4
|
"description": "SoybeanJS's command lint tools",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Soybean",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"commit": "soy git-commit",
|
|
63
63
|
"cleanup": "soy cleanup",
|
|
64
64
|
"update-pkg": "soy update-pkg",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
65
|
+
"publish-pkg": "pnpm -r publish --access public",
|
|
66
|
+
"release": "soy release && pnpm publish-pkg"
|
|
67
67
|
}
|
|
68
68
|
}
|