vibora 4.8.2 → 4.8.4
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 +2 -6
- package/package.json +1 -1
package/bin/vibora.js
CHANGED
|
@@ -29881,9 +29881,6 @@ var prettyOutput = false;
|
|
|
29881
29881
|
function setPrettyOutput(value) {
|
|
29882
29882
|
prettyOutput = value;
|
|
29883
29883
|
}
|
|
29884
|
-
function isPrettyOutput() {
|
|
29885
|
-
return prettyOutput;
|
|
29886
|
-
}
|
|
29887
29884
|
function output(data) {
|
|
29888
29885
|
const response = {
|
|
29889
29886
|
success: true,
|
|
@@ -30783,8 +30780,7 @@ async function handleDevCommand(action, flags) {
|
|
|
30783
30780
|
// cli/src/commands/doctor.ts
|
|
30784
30781
|
async function handleDoctorCommand(flags) {
|
|
30785
30782
|
const deps = checkAllDependencies();
|
|
30786
|
-
|
|
30787
|
-
if (showJson) {
|
|
30783
|
+
if (flags.json === "true") {
|
|
30788
30784
|
output(deps);
|
|
30789
30785
|
return;
|
|
30790
30786
|
}
|
|
@@ -30913,7 +30909,7 @@ Commands:
|
|
|
30913
30909
|
Checks/installs dependencies: bun, dtach, claude, uv
|
|
30914
30910
|
down Stop Vibora server
|
|
30915
30911
|
status Check if server is running
|
|
30916
|
-
doctor
|
|
30912
|
+
doctor [--json] Check all dependencies and show versions
|
|
30917
30913
|
|
|
30918
30914
|
git status Get git status for worktree
|
|
30919
30915
|
git diff Get git diff for worktree
|