claude-yes 1.49.0 → 1.50.0
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/cli.js +2 -2
- package/package.json +1 -1
- package/ts/parseCliArgs.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -4505,7 +4505,7 @@ const Yargs = YargsFactory(esm_default);
|
|
|
4505
4505
|
//#endregion
|
|
4506
4506
|
//#region package.json
|
|
4507
4507
|
var name = "agent-yes";
|
|
4508
|
-
var version = "1.
|
|
4508
|
+
var version = "1.50.0";
|
|
4509
4509
|
|
|
4510
4510
|
//#endregion
|
|
4511
4511
|
//#region ts/parseCliArgs.ts
|
|
@@ -4538,7 +4538,7 @@ function parseCliArgs(argv) {
|
|
|
4538
4538
|
}).option("timeout", {
|
|
4539
4539
|
type: "string",
|
|
4540
4540
|
description: "Exit after a period of inactivity, e.g., \"5s\" or \"1m\"",
|
|
4541
|
-
alias: "t"
|
|
4541
|
+
alias: ["t", "idle-timeout"]
|
|
4542
4542
|
}).option("exit-on-idle", {
|
|
4543
4543
|
type: "string",
|
|
4544
4544
|
deprecated: "use --timeout instead",
|
package/package.json
CHANGED
package/ts/parseCliArgs.ts
CHANGED
|
@@ -65,7 +65,7 @@ export function parseCliArgs(argv: string[]) {
|
|
|
65
65
|
.option("timeout", {
|
|
66
66
|
type: "string",
|
|
67
67
|
description: 'Exit after a period of inactivity, e.g., "5s" or "1m"',
|
|
68
|
-
alias: "t",
|
|
68
|
+
alias: ["t", "idle-timeout"],
|
|
69
69
|
})
|
|
70
70
|
.option("exit-on-idle", {
|
|
71
71
|
type: "string",
|