supbuddy 3.3.3 → 3.3.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/README.md +0 -1
- package/dist/bin.js +103 -16
- package/dist/daemon/worker.cjs +1 -1
- package/dist/lib.d.ts +5 -0
- package/package.json +1 -1
package/dist/lib.d.ts
CHANGED
|
@@ -65,7 +65,12 @@ declare function defaultStateDir(): string;
|
|
|
65
65
|
*
|
|
66
66
|
* Keep this in sync with the dispatch in bin.ts + the `case`/`sub ===` handling
|
|
67
67
|
* in commands.ts when commands change.
|
|
68
|
+
*
|
|
69
|
+
* COMMAND_TREE lists what DISPATCH ACCEPTS, which is not the same question as what THIS BUILD CAN DO.
|
|
70
|
+
* `tui`/`dash`/`shell` are accepted everywhere but only runnable from a checkout, so the generated
|
|
71
|
+
* completion filters them out of the builds that would refuse them — see `zshCompletion` below.
|
|
68
72
|
*/
|
|
73
|
+
|
|
69
74
|
/** command → its subcommands (empty = no subcommands). */
|
|
70
75
|
declare const COMMAND_TREE: Record<string, string[]>;
|
|
71
76
|
/** Flags accepted (almost) everywhere. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supbuddy",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.4",
|
|
4
4
|
"description": "Run multiple Supabase projects at once on custom local domains with HTTPS. A headless CLI and daemon (proxy, DNS, Supabase/Compose lifecycle, MCP) for macOS and Linux.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"supabase",
|