@arcanejs/toolkit 6.0.0 → 6.0.1
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/frontend/index.js
CHANGED
|
@@ -364,6 +364,7 @@ var Stage = ({ className, renderers }) => {
|
|
|
364
364
|
console.log("initializing websocket");
|
|
365
365
|
const wsUrl = new URL(window.location.href);
|
|
366
366
|
wsUrl.protocol = wsUrl.protocol === "https:" ? "wss:" : "ws:";
|
|
367
|
+
wsUrl.hash = "";
|
|
367
368
|
const ws = new WebSocket(wsUrl.href);
|
|
368
369
|
ws.onmessage = (event) => {
|
|
369
370
|
handleMessage(JSON.parse(event.data));
|
package/dist/frontend/index.mjs
CHANGED
|
@@ -364,6 +364,7 @@ var Stage = ({ className, renderers }) => {
|
|
|
364
364
|
console.log("initializing websocket");
|
|
365
365
|
const wsUrl = new URL(window.location.href);
|
|
366
366
|
wsUrl.protocol = wsUrl.protocol === "https:" ? "wss:" : "ws:";
|
|
367
|
+
wsUrl.hash = "";
|
|
367
368
|
const ws = new WebSocket(wsUrl.href);
|
|
368
369
|
ws.onmessage = (event) => {
|
|
369
370
|
handleMessage(JSON.parse(event.data));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcanejs/toolkit",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Build web-accessible control interfaces for your long-running Node.js processes",
|
|
6
6
|
"keywords": [
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
"styled-components": "^6.1.13",
|
|
115
115
|
"tsup": "^8.1.0",
|
|
116
116
|
"typescript": "^5.3.3",
|
|
117
|
-
"@arcanejs/toolkit-frontend": "^0.9.0",
|
|
118
117
|
"@arcanejs/eslint-config": "^0.0.0",
|
|
118
|
+
"@arcanejs/toolkit-frontend": "^0.9.0",
|
|
119
119
|
"@arcanejs/typescript-config": "^0.0.0"
|
|
120
120
|
},
|
|
121
121
|
"dependencies": {
|