supbuddy 3.2.4 → 3.2.5
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 +1 -1
- package/dist/daemon/worker.cjs +6 -2
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -19807,7 +19807,7 @@ function cliBuildKind(env3 = process.env) {
|
|
|
19807
19807
|
return raw === "host" || raw === "npm" ? raw : "dev";
|
|
19808
19808
|
}
|
|
19809
19809
|
function cliVersion(env3 = process.env) {
|
|
19810
|
-
return "3.2.
|
|
19810
|
+
return "3.2.5".trim() || "0.0.0-dev";
|
|
19811
19811
|
}
|
|
19812
19812
|
function isDevBuild(env3) {
|
|
19813
19813
|
return cliBuildKind(env3) === "dev";
|
package/dist/daemon/worker.cjs
CHANGED
|
@@ -56955,15 +56955,19 @@ function sshProxyCommand(socksPort = TAILNET_SOCKS_PORT) {
|
|
|
56955
56955
|
return `nc -X 5 -x localhost:${socksPort} %h %p`;
|
|
56956
56956
|
}
|
|
56957
56957
|
function sshOptionsFor(args) {
|
|
56958
|
+
const q = (p) => {
|
|
56959
|
+
if (p.includes('"')) throw new Error(`refusing to build an ssh option for a path containing a double quote: ${p}`);
|
|
56960
|
+
return `"${p}"`;
|
|
56961
|
+
};
|
|
56958
56962
|
return [
|
|
56959
56963
|
"-o",
|
|
56960
56964
|
`ProxyCommand=${sshProxyCommand(args.socksPort)}`,
|
|
56961
56965
|
"-o",
|
|
56962
|
-
`UserKnownHostsFile=${args.knownHostsFile}`,
|
|
56966
|
+
`UserKnownHostsFile=${q(args.knownHostsFile)}`,
|
|
56963
56967
|
"-o",
|
|
56964
56968
|
"StrictHostKeyChecking=yes",
|
|
56965
56969
|
"-o",
|
|
56966
|
-
`IdentityFile=${args.identityFile}`,
|
|
56970
|
+
`IdentityFile=${q(args.identityFile)}`,
|
|
56967
56971
|
"-o",
|
|
56968
56972
|
"IdentitiesOnly=yes",
|
|
56969
56973
|
"-o",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supbuddy",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
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",
|