@liveblocks/core 1.1.5-test1 → 1.1.5-test2
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -103,7 +103,7 @@ var onMessageFromPanel = eventSource.observable;
|
|
|
103
103
|
// src/devtools/index.ts
|
|
104
104
|
var VERSION = true ? (
|
|
105
105
|
/* istanbul ignore next */
|
|
106
|
-
"1.1.5-
|
|
106
|
+
"1.1.5-test2"
|
|
107
107
|
) : "dev";
|
|
108
108
|
var _devtoolsSetupHasRun = false;
|
|
109
109
|
function setupDevTools(getAllRooms) {
|
|
@@ -5225,7 +5225,7 @@ function makeCreateSocketDelegateForRoom(liveblocksServer, WebSocketPolyfill) {
|
|
|
5225
5225
|
// @ts-ignore (PKG_VERSION will be injected by the build script)
|
|
5226
5226
|
true ? (
|
|
5227
5227
|
/* istanbul ignore next */
|
|
5228
|
-
"1.1.5-
|
|
5228
|
+
"1.1.5-test2"
|
|
5229
5229
|
) : "dev"}`
|
|
5230
5230
|
);
|
|
5231
5231
|
};
|
|
@@ -5892,12 +5892,12 @@ Conflicting copies in your bundle:
|
|
|
5892
5892
|
- ${pkgName} ${pkgBuildInfo} (trying to load this now)`;
|
|
5893
5893
|
error2(msg);
|
|
5894
5894
|
}
|
|
5895
|
-
if (pkgVersion !== "1.1.5-
|
|
5895
|
+
if (pkgVersion !== "1.1.5-test2") {
|
|
5896
5896
|
error2(
|
|
5897
5897
|
`Cross-linked versions of Liveblocks found, which will cause issues! See ${crossLinkedDocs}
|
|
5898
5898
|
|
|
5899
5899
|
Conflicts:
|
|
5900
|
-
- @liveblocks/core is at ${"1.1.5-
|
|
5900
|
+
- @liveblocks/core is at ${"1.1.5-test2"}
|
|
5901
5901
|
- ${pkgName} is at ${pkgVersion}
|
|
5902
5902
|
|
|
5903
5903
|
Always upgrade all Liveblocks packages to the same version number.`
|
|
@@ -5906,7 +5906,7 @@ Always upgrade all Liveblocks packages to the same version number.`
|
|
|
5906
5906
|
}
|
|
5907
5907
|
|
|
5908
5908
|
// src/index.ts
|
|
5909
|
-
detectDupes("@liveblocks/core", "1.1.5-
|
|
5909
|
+
detectDupes("@liveblocks/core", "1.1.5-test2", "cjs");
|
|
5910
5910
|
|
|
5911
5911
|
|
|
5912
5912
|
|
package/package.json
CHANGED