@porte/cli 0.1.0 → 0.1.1
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/main.js
CHANGED
|
@@ -11,7 +11,7 @@ setLogSink((_level, line) => {
|
|
|
11
11
|
});
|
|
12
12
|
const verbose = process.argv.includes("--verbose") || process.argv.includes("-v");
|
|
13
13
|
process.env.LOG_LEVEL ??= verbose ? "DEBUG" : "WARN";
|
|
14
|
-
const { run } = await import("./run-cli-
|
|
14
|
+
const { run } = await import("./run-cli-Djt_v7Px.js");
|
|
15
15
|
const code = await run(process.argv.slice(2), {
|
|
16
16
|
stdout: process.stdout,
|
|
17
17
|
stderr: process.stderr,
|
|
@@ -168,7 +168,7 @@ var WebSocketHandlerError = class extends h("WebSocketHandlerError") {
|
|
|
168
168
|
//#endregion
|
|
169
169
|
//#region src/entrypoints/cli/version.ts
|
|
170
170
|
/** Package version. Source is `package.json`. */
|
|
171
|
-
const VERSION = "0.1.
|
|
171
|
+
const VERSION = "0.1.1";
|
|
172
172
|
//#endregion
|
|
173
173
|
//#region src/entrypoints/cli/cli-error.ts
|
|
174
174
|
/** Bad arguments or missing required flags. */
|
package/package.json
CHANGED