svamp-cli 0.1.54 → 0.1.55
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
|
@@ -113,7 +113,7 @@ async function main() {
|
|
|
113
113
|
} else if (!subcommand || subcommand === "start") {
|
|
114
114
|
await handleInteractiveCommand();
|
|
115
115
|
} else if (subcommand === "--version" || subcommand === "-v") {
|
|
116
|
-
const pkg = await import('./package
|
|
116
|
+
const pkg = await import('./package--OmR0DLu.mjs').catch(() => ({ default: { version: "unknown" } }));
|
|
117
117
|
console.log(`svamp version: ${pkg.default.version}`);
|
|
118
118
|
} else {
|
|
119
119
|
console.error(`Unknown command: ${subcommand}`);
|