@liveblocks/client 0.17.1-beta1 → 0.17.3
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/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -414,7 +414,7 @@ function makeStateMachine(state, context, mockedEffects) {
|
|
|
414
414
|
var ws = WebSocketPolyfill || WebSocket;
|
|
415
415
|
return function (token) {
|
|
416
416
|
return new ws(
|
|
417
|
-
liveblocksServer + "/?token=" + token + "&version=0.17.
|
|
417
|
+
liveblocksServer + "/?token=" + token + "&version=0.17.3"
|
|
418
418
|
);
|
|
419
419
|
};
|
|
420
420
|
})(
|
package/index.mjs
CHANGED
|
@@ -337,7 +337,7 @@ function makeStateMachine(state, context, mockedEffects) {
|
|
|
337
337
|
);
|
|
338
338
|
const ws = WebSocketPolyfill || WebSocket;
|
|
339
339
|
return (token) =>
|
|
340
|
-
new ws(`${liveblocksServer}/?token=${token}&version=0.17.
|
|
340
|
+
new ws(`${liveblocksServer}/?token=${token}&version=0.17.3`);
|
|
341
341
|
})(
|
|
342
342
|
context.liveblocksServer,
|
|
343
343
|
null !==
|