@quiteer/scripts 0.0.11 → 0.0.12

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @quiteer/scripts
2
2
  > 简化多包仓库的版本管理与变更日志生成,提供便捷的 CLI 命令。
3
- > [文档](https://quiteerjs.github.io/web/ci/scripts.html)
3
+ > [文档](https://quiteerjs.github.io/web/cli/scripts.html)
4
4
 
5
5
  ## 安装
6
6
 
package/dist/index.mjs CHANGED
@@ -12,7 +12,7 @@ import enquirer from "enquirer";
12
12
  import { versionBump } from "bumpp";
13
13
 
14
14
  //#region package.json
15
- var version = "0.0.11";
15
+ var version = "0.0.12";
16
16
 
17
17
  //#endregion
18
18
  //#region src/locales/changelog.ts
@@ -906,6 +906,13 @@ async function release(tagPrefix) {
906
906
  groupOutput: cli.changelog.groupOutput,
907
907
  timelineOutput: cli.changelog.timelineOutput
908
908
  });
909
+ await execCommand("git", [
910
+ "-C",
911
+ repoRoot,
912
+ "add",
913
+ "-A"
914
+ ]);
915
+ await gitCommit(lang);
909
916
  }
910
917
 
911
918
  //#endregion
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@quiteer/scripts",
3
3
  "type": "module",
4
- "version": "0.0.11",
5
- "homepage": "https://quiteerjs.github.io/web/ci/scripts.html",
4
+ "version": "0.0.12",
5
+ "homepage": "https://quiteerjs.github.io/web/cli/scripts.html",
6
6
  "publishConfig": {
7
7
  "access": "public",
8
8
  "registry": "https://registry.npmjs.org/"
@@ -49,6 +49,6 @@
49
49
  "scripts": {
50
50
  "dev": "tsdown -w",
51
51
  "build": "tsdown",
52
- "release": "qui r --tag-prefix scripts && qui gc && tsdown && pnpm publish"
52
+ "release": "qui r --tag-prefix scripts && tsdown && pnpm publish"
53
53
  }
54
54
  }