@liveblocks/core 1.0.1-test4 → 1.0.1-test6
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -113,7 +113,7 @@ if (process.env.NODE_ENV !== "production" && typeof window !== "undefined") {
|
|
|
113
113
|
var onMessageFromPanel = eventSource.observable;
|
|
114
114
|
|
|
115
115
|
// src/devtools/index.ts
|
|
116
|
-
var VERSION = true ? "1.0.1-
|
|
116
|
+
var VERSION = true ? "1.0.1-test6" : "dev";
|
|
117
117
|
var _devtoolsSetupHasRun = false;
|
|
118
118
|
function setupDevTools(getAllRooms) {
|
|
119
119
|
if (process.env.NODE_ENV === "production" || typeof window === "undefined") {
|
|
@@ -4172,7 +4172,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
|
|
|
4172
4172
|
const ws = WebSocketPolyfill || WebSocket;
|
|
4173
4173
|
return (token) => {
|
|
4174
4174
|
return new ws(
|
|
4175
|
-
`${liveblocksServer}/?token=${token}&version=${true ? "1.0.1-
|
|
4175
|
+
`${liveblocksServer}/?token=${token}&version=${true ? "1.0.1-test6" : "dev"}`
|
|
4176
4176
|
);
|
|
4177
4177
|
};
|
|
4178
4178
|
}
|