@xh/hoist 73.0.0-SNAPSHOT.1744587856582 → 73.0.0-SNAPSHOT.1744653564971
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/CHANGELOG.md +3 -1
- package/package.json +1 -1
- package/svc/WebSocketService.ts +1 -2
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "73.0.0-SNAPSHOT.
|
|
3
|
+
"version": "73.0.0-SNAPSHOT.1744653564971",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|
package/svc/WebSocketService.ts
CHANGED
|
@@ -61,7 +61,7 @@ export class WebSocketService extends HoistService {
|
|
|
61
61
|
/** Set to true to log all sent/received messages - very chatty. */
|
|
62
62
|
logMessages: boolean = false;
|
|
63
63
|
|
|
64
|
-
telemetry: WebSocketTelemetry = null;
|
|
64
|
+
telemetry: WebSocketTelemetry = {channelKey: null, subscriptionCount: 0, events: {}};
|
|
65
65
|
|
|
66
66
|
private _timer: Timer;
|
|
67
67
|
private _socket: WebSocket;
|
|
@@ -83,7 +83,6 @@ export class WebSocketService extends HoistService {
|
|
|
83
83
|
this.enabled = false;
|
|
84
84
|
return;
|
|
85
85
|
}
|
|
86
|
-
this.telemetry = {channelKey: null, subscriptionCount: 0, events: {}};
|
|
87
86
|
|
|
88
87
|
this.connect();
|
|
89
88
|
|