@soybeanjs/cli 1.0.8-beta.0 → 1.0.8-beta.2
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/dist/index.cjs +7 -1
- package/dist/index.js +7 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -37,7 +37,7 @@ module.exports = __toCommonJS(src_exports);
|
|
|
37
37
|
var import_cac = __toESM(require("cac"), 1);
|
|
38
38
|
|
|
39
39
|
// package.json
|
|
40
|
-
var version = "1.0.8-beta.
|
|
40
|
+
var version = "1.0.8-beta.2";
|
|
41
41
|
|
|
42
42
|
// src/command/git-commit.ts
|
|
43
43
|
var import_node_path = __toESM(require("path"), 1);
|
|
@@ -220,6 +220,12 @@ async function setupCli() {
|
|
|
220
220
|
await ncu(cliOptions.ncuCommandArgs);
|
|
221
221
|
}
|
|
222
222
|
},
|
|
223
|
+
"update-pkg": {
|
|
224
|
+
desc: 'equal to command "ncu"',
|
|
225
|
+
action: async () => {
|
|
226
|
+
await ncu();
|
|
227
|
+
}
|
|
228
|
+
},
|
|
223
229
|
"git-commit": {
|
|
224
230
|
desc: "git commit, generate commit message which match Conventional Commits standard",
|
|
225
231
|
action: async () => {
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import cac from "cac";
|
|
5
5
|
|
|
6
6
|
// package.json
|
|
7
|
-
var version = "1.0.8-beta.
|
|
7
|
+
var version = "1.0.8-beta.2";
|
|
8
8
|
|
|
9
9
|
// src/command/git-commit.ts
|
|
10
10
|
import path from "node:path";
|
|
@@ -187,6 +187,12 @@ async function setupCli() {
|
|
|
187
187
|
await ncu(cliOptions.ncuCommandArgs);
|
|
188
188
|
}
|
|
189
189
|
},
|
|
190
|
+
"update-pkg": {
|
|
191
|
+
desc: 'equal to command "ncu"',
|
|
192
|
+
action: async () => {
|
|
193
|
+
await ncu();
|
|
194
|
+
}
|
|
195
|
+
},
|
|
190
196
|
"git-commit": {
|
|
191
197
|
desc: "git commit, generate commit message which match Conventional Commits standard",
|
|
192
198
|
action: async () => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.8-beta.
|
|
4
|
+
"version": "1.0.8-beta.2",
|
|
5
5
|
"packageManager": "pnpm@8.13.1",
|
|
6
6
|
"description": "SoybeanJS's command line tools",
|
|
7
7
|
"author": {
|
|
@@ -82,6 +82,6 @@
|
|
|
82
82
|
"release-execute": "tsx ./scripts/release.ts && pnpm soy changelog",
|
|
83
83
|
"stub": "pnpm -r run stub",
|
|
84
84
|
"typecheck": "tsc --noEmit --skipLibCheck",
|
|
85
|
-
"update-pkg": "soy
|
|
85
|
+
"update-pkg": "soy update-pkg"
|
|
86
86
|
}
|
|
87
87
|
}
|