supbuddy 3.2.16 → 3.3.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/dist/bin.js +19520 -19090
- package/dist/daemon/worker.cjs +1998 -325
- package/dist/lib.js +3 -0
- package/package.json +1 -1
package/dist/lib.js
CHANGED
|
@@ -172,6 +172,8 @@ Two daemons are running and this command would have acted on the wrong one. Stop
|
|
|
172
172
|
var COMMAND_TREE = {
|
|
173
173
|
status: [],
|
|
174
174
|
doctor: [],
|
|
175
|
+
// `ready` takes a project ref + flags, no subcommands.
|
|
176
|
+
ready: [],
|
|
175
177
|
// `reset` takes flags only (--tier soft|deep|full), no subcommands.
|
|
176
178
|
reset: [],
|
|
177
179
|
proxy: ["status", "start", "stop", "restart"],
|
|
@@ -259,6 +261,7 @@ var DESCRIPTIONS = {
|
|
|
259
261
|
// modules
|
|
260
262
|
status: "daemon + proxy health",
|
|
261
263
|
doctor: "scan for health/drift issues (--fix to repair)",
|
|
264
|
+
ready: "can a project run? deps installed + env vars correct (--fix to repair)",
|
|
262
265
|
reset: "tiered system reset (--tier soft|deep|full; backs up first)",
|
|
263
266
|
proxy: "reverse-proxy control",
|
|
264
267
|
map: "domain \u2192 port mappings",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supbuddy",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
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",
|