@rpcbase/cli 0.27.0 → 0.28.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/cli",
3
- "version": "0.27.0",
3
+ "version": "0.28.0",
4
4
  "license": "SSPL-1.0",
5
5
  "bin": {
6
6
  "rb": "./bin.js"
@@ -36,7 +36,7 @@ const start = (run_configs) => {
36
36
  const stop = (run_configs) => {
37
37
  const {server_port, wss_port} = get_port(run_configs)
38
38
 
39
- execSync(`${TAILSCALE_PATH} serve https:443 /socket http://127.0.0.1:${wss_port} off`, {stdio: "inherit"})
39
+ execSync(`${TAILSCALE_PATH} serve https:443 /wss http://127.0.0.1:${wss_port} off`, {stdio: "inherit"})
40
40
  execSync(`${TAILSCALE_PATH} serve https:443 / http://127.0.0.1:${server_port} off`, {stdio: "inherit"})
41
41
  execSync(`${TAILSCALE_PATH} funnel 443 off`, {stdio: "inherit"})
42
42
  }