supbuddy 3.0.11 → 3.1.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 +17390 -1004
- package/dist/daemon/worker.cjs +17401 -14025
- package/dist/lib.js +5 -0
- package/package.json +1 -1
package/dist/lib.js
CHANGED
|
@@ -160,6 +160,9 @@ async function connect(a) {
|
|
|
160
160
|
// src/completions.ts
|
|
161
161
|
var COMMAND_TREE = {
|
|
162
162
|
status: [],
|
|
163
|
+
doctor: [],
|
|
164
|
+
// `reset` takes flags only (--tier soft|deep|full), no subcommands.
|
|
165
|
+
reset: [],
|
|
163
166
|
proxy: ["status", "start", "stop", "restart"],
|
|
164
167
|
map: ["ls", "add", "get", "set", "enable", "disable", "rm", "restore"],
|
|
165
168
|
project: ["ls", "add", "get", "scan", "set", "enable", "disable", "rm", "restore", "env", "env-read", "set-supabase-path", "refresh-context"],
|
|
@@ -243,6 +246,8 @@ function argSourceFor(module, action) {
|
|
|
243
246
|
var DESCRIPTIONS = {
|
|
244
247
|
// modules
|
|
245
248
|
status: "daemon + proxy health",
|
|
249
|
+
doctor: "scan for health/drift issues (--fix to repair)",
|
|
250
|
+
reset: "tiered system reset (--tier soft|deep|full; backs up first)",
|
|
246
251
|
proxy: "reverse-proxy control",
|
|
247
252
|
map: "domain \u2192 port mappings",
|
|
248
253
|
project: "registered dev projects",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supbuddy",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.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",
|