svamp-cli 0.2.84 → 0.2.85
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.mjs
CHANGED
|
@@ -336,7 +336,7 @@ async function main() {
|
|
|
336
336
|
} else if (!subcommand || subcommand === "start") {
|
|
337
337
|
await handleInteractiveCommand();
|
|
338
338
|
} else if (subcommand === "--version" || subcommand === "-v") {
|
|
339
|
-
const pkg = await import('./package-
|
|
339
|
+
const pkg = await import('./package-BDGD9W2l.mjs').catch(() => ({ default: { version: "unknown" } }));
|
|
340
340
|
console.log(`svamp version: ${pkg.default.version}`);
|
|
341
341
|
} else {
|
|
342
342
|
console.error(`Unknown command: ${subcommand}`);
|