supbuddy 3.0.2 → 3.0.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.
Files changed (2) hide show
  1. package/dist/bin.js +3 -0
  2. package/package.json +4 -2
package/dist/bin.js CHANGED
@@ -19606,6 +19606,9 @@ function caddyPackageName(platform = process.platform, arch = process.arch) {
19606
19606
  if (platform === "darwin") {
19607
19607
  return arch === "arm64" ? "@supbuddy/caddy-darwin-arm64" : "@supbuddy/caddy-darwin-amd64";
19608
19608
  }
19609
+ if (platform === "linux") {
19610
+ return arch === "arm64" ? "@supbuddy/caddy-linux-arm64" : "@supbuddy/caddy-linux-amd64";
19611
+ }
19609
19612
  return null;
19610
19613
  }
19611
19614
  function resolvePackagedCaddyDir(deps = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supbuddy",
3
- "version": "3.0.2",
3
+ "version": "3.0.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",
@@ -51,7 +51,9 @@
51
51
  },
52
52
  "optionalDependencies": {
53
53
  "@supbuddy/caddy-darwin-amd64": "2.11.1",
54
- "@supbuddy/caddy-darwin-arm64": "2.11.1"
54
+ "@supbuddy/caddy-darwin-arm64": "2.11.1",
55
+ "@supbuddy/caddy-linux-amd64": "2.11.1",
56
+ "@supbuddy/caddy-linux-arm64": "2.11.1"
55
57
  },
56
58
  "devDependencies": {
57
59
  "@supbuddy/shared": "*",