@holochain/hc-spin 0.300.2-dev.1 → 0.300.2-dev.2

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/cli.js CHANGED
File without changes
@@ -12025,7 +12025,7 @@ electron.app.whenReady().then(async () => {
12025
12025
  const zomeCallSigner = await rustUtils.ZomeCallSigner.connect(lairUrls[i], "pass");
12026
12026
  const appPort = portsInfo[i].app_ports[0];
12027
12027
  const appWs = await AppWebsocket.connect({
12028
- url: new URL(`ws://127.0.0.1:${appPort}`),
12028
+ url: new URL(`ws://localhost:${appPort}`),
12029
12029
  wsClientOptions: {
12030
12030
  origin: "hc-spin"
12031
12031
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/hc-spin",
3
- "version": "0.300.2-dev.1",
3
+ "version": "0.300.2-dev.2",
4
4
  "holochainVersion": "0.3.0-beta-dev.44",
5
5
  "description": "CLI to run Holochain aps during development.",
6
6
  "author": "matthme",
package/src/main/index.ts CHANGED
@@ -331,7 +331,7 @@ app.whenReady().then(async () => {
331
331
 
332
332
  const appPort = portsInfo[i].app_ports[0];
333
333
  const appWs = await AppWebsocket.connect({
334
- url: new URL(`ws://127.0.0.1:${appPort}`),
334
+ url: new URL(`ws://localhost:${appPort}`),
335
335
  wsClientOptions: {
336
336
  origin: 'hc-spin',
337
337
  },