@togglhq/cli 1.5.25 → 1.5.26
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/build/cli.d.ts +1 -0
- package/build/cli.js +13 -0
- package/build/index.d.ts +2 -1
- package/build/index.js +2 -13
- package/build/{program-CMtkxDg-.js → program-B03iyxXV.js} +5 -5
- package/build/program-Bby4U_hT.d.ts +982 -0
- package/build/program.d.ts +2 -982
- package/build/program.js +1 -1
- package/package.json +3 -3
package/build/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|
package/build/cli.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { n as CommanderError, t as createProgram } from "./program-B03iyxXV.js";
|
|
3
|
+
//#region src/cli.ts
|
|
4
|
+
try {
|
|
5
|
+
await createProgram({ enableUpdateNotification: true }).parseAsync(process.argv);
|
|
6
|
+
} catch (error) {
|
|
7
|
+
if (error instanceof CommanderError) process.exit(error.exitCode);
|
|
8
|
+
throw error;
|
|
9
|
+
}
|
|
10
|
+
//#endregion
|
|
11
|
+
export {};
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=cli.js.map
|
package/build/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { t as createProgram } from "./program-Bby4U_hT.js";
|
|
2
|
+
export { createProgram };
|
package/build/index.js
CHANGED
|
@@ -1,13 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//#region src/index.ts
|
|
4
|
-
try {
|
|
5
|
-
await createProgram({ enableUpdateNotification: true }).parseAsync(process.argv);
|
|
6
|
-
} catch (error) {
|
|
7
|
-
if (error instanceof CommanderError) process.exit(error.exitCode);
|
|
8
|
-
throw error;
|
|
9
|
-
}
|
|
10
|
-
//#endregion
|
|
11
|
-
export {};
|
|
12
|
-
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
1
|
+
import { t as createProgram } from "./program-B03iyxXV.js";
|
|
2
|
+
export { createProgram };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { createRequire } from "node:module";
|
|
2
|
-
import { exec, spawn } from "node:child_process";
|
|
3
|
-
import * as path$1 from "node:path";
|
|
4
|
-
import path, { basename, dirname, extname, join } from "node:path";
|
|
5
2
|
import * as fs$1 from "node:fs";
|
|
6
3
|
import { readFileSync } from "node:fs";
|
|
7
|
-
import
|
|
4
|
+
import * as path$1 from "node:path";
|
|
5
|
+
import path, { basename, dirname, extname, join } from "node:path";
|
|
8
6
|
import { fileURLToPath } from "node:url";
|
|
7
|
+
import { exec, spawn } from "node:child_process";
|
|
8
|
+
import process$1 from "node:process";
|
|
9
9
|
import { AsyncLocalStorage, AsyncResource } from "node:async_hooks";
|
|
10
10
|
import { stripVTControlCharacters, styleText } from "node:util";
|
|
11
11
|
import * as readline from "node:readline";
|
|
@@ -26082,4 +26082,4 @@ Common commands:
|
|
|
26082
26082
|
//#endregion
|
|
26083
26083
|
export { CommanderError as n, createProgram as t };
|
|
26084
26084
|
|
|
26085
|
-
//# sourceMappingURL=program-
|
|
26085
|
+
//# sourceMappingURL=program-B03iyxXV.js.map
|