vibora 5.1.0 → 5.2.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/bin/vibora.js
CHANGED
|
@@ -32583,7 +32583,7 @@ function installUv() {
|
|
|
32583
32583
|
var package_default = {
|
|
32584
32584
|
name: "vibora",
|
|
32585
32585
|
private: true,
|
|
32586
|
-
version: "5.
|
|
32586
|
+
version: "5.2.0",
|
|
32587
32587
|
description: "The Vibe Engineer's Cockpit",
|
|
32588
32588
|
license: "PolyForm-Shield-1.0.0",
|
|
32589
32589
|
type: "module",
|
|
@@ -32809,12 +32809,15 @@ async function handleUpCommand(flags) {
|
|
|
32809
32809
|
if (!isProcessRunning(pid)) {
|
|
32810
32810
|
throw new CliError("START_FAILED", "Server process died immediately after starting", ExitCodes.ERROR);
|
|
32811
32811
|
}
|
|
32812
|
-
|
|
32813
|
-
|
|
32814
|
-
|
|
32815
|
-
|
|
32816
|
-
|
|
32817
|
-
|
|
32812
|
+
if (isJsonOutput()) {
|
|
32813
|
+
output({
|
|
32814
|
+
pid,
|
|
32815
|
+
port,
|
|
32816
|
+
url: `http://localhost:${port}`
|
|
32817
|
+
});
|
|
32818
|
+
} else {
|
|
32819
|
+
showGettingStartedTips(port);
|
|
32820
|
+
}
|
|
32818
32821
|
}
|
|
32819
32822
|
function showGettingStartedTips(port) {
|
|
32820
32823
|
console.error(`
|