supbuddy 3.1.6 → 3.1.7

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/lib.js CHANGED
@@ -196,7 +196,8 @@ var COMMAND_TREE = {
196
196
  shell: [],
197
197
  selftest: [],
198
198
  completion: ["zsh"],
199
- help: []
199
+ help: [],
200
+ version: []
200
201
  };
201
202
  var GLOBAL_FLAGS = ["--json", "--details", "--follow", "--url", "--timeout", "--yes", "--quiet", "--state-dir", "--worker-port", "--detach"];
202
203
  var TOP_LEVEL = Object.keys(COMMAND_TREE);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supbuddy",
3
- "version": "3.1.6",
3
+ "version": "3.1.7",
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",
@@ -43,6 +43,7 @@
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsup",
46
+ "build:host": "SUPBUDDY_BUILD_KIND=host tsup",
46
47
  "build:npm": "SUPBUDDY_PUBLIC_BUILD=1 tsup",
47
48
  "build:standalone": "pnpm build:npm && node ../../scripts/stage-cli-daemon.mjs",
48
49
  "prepublishOnly": "pnpm build:standalone",