supbuddy 3.3.4 → 3.3.5
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/bin.js +144 -106
- package/dist/daemon/worker.cjs +8 -11
- package/dist/lib.js +5 -0
- package/dist/tui.js +291 -0
- package/package.json +4 -4
package/dist/lib.js
CHANGED
|
@@ -168,6 +168,11 @@ Two daemons are running and this command would have acted on the wrong one. Stop
|
|
|
168
168
|
);
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
+
// src/tui-availability.ts
|
|
172
|
+
import { existsSync } from "fs";
|
|
173
|
+
import path4 from "path";
|
|
174
|
+
import { fileURLToPath } from "url";
|
|
175
|
+
|
|
171
176
|
// src/completions.ts
|
|
172
177
|
var COMMAND_TREE = {
|
|
173
178
|
status: [],
|