@liveblocks/core 1.0.10 → 1.0.12

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -117,7 +117,7 @@ var onMessageFromPanel = eventSource.observable;
117
117
  // src/devtools/index.ts
118
118
  var VERSION = true ? (
119
119
  /* istanbul ignore next */
120
- "1.0.10"
120
+ "1.0.12"
121
121
  ) : "dev";
122
122
  var _devtoolsSetupHasRun = false;
123
123
  function setupDevTools(getAllRooms) {
@@ -2399,7 +2399,6 @@ var LiveObject = class extends AbstractCrdt {
2399
2399
  id,
2400
2400
  data: {}
2401
2401
  };
2402
- reverse.push(reverseUpdate);
2403
2402
  for (const key in op.data) {
2404
2403
  const oldValue = this._map.get(key);
2405
2404
  if (isLiveNode(oldValue)) {
@@ -4525,7 +4524,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
4525
4524
  // @ts-ignore (__PACKAGE_VERSION__ will be injected by the build script)
4526
4525
  true ? (
4527
4526
  /* istanbul ignore next */
4528
- "1.0.10"
4527
+ "1.0.12"
4529
4528
  ) : "dev"}`
4530
4529
  );
4531
4530
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/core",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "Shared code and foundational internals for Liveblocks",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",