@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 +1 -1
- package/dist/index.mjs +8 -1
- package/package.json +3 -3
package/README.md
CHANGED
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.
|
|
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.
|
|
5
|
-
"homepage": "https://quiteerjs.github.io/web/
|
|
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 &&
|
|
52
|
+
"release": "qui r --tag-prefix scripts && tsdown && pnpm publish"
|
|
53
53
|
}
|
|
54
54
|
}
|