@liveblocks/client 1.1.4 → 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 +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/index.ts
|
|
2
|
+
var _core = require('@liveblocks/core');
|
|
2
3
|
|
|
3
4
|
|
|
4
5
|
|
|
@@ -6,7 +7,8 @@
|
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
|
|
11
|
+
_core.detectDupes.call(void 0, "@liveblocks/client", "1.1.5-test2", "cjs");
|
|
10
12
|
|
|
11
13
|
|
|
12
14
|
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AACA,SAAS,mBAAmB;AAiC5B;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAnCP,YAAY,sBAAU,eAAa,KAAW","sourcesContent":["// Detect if duplicate copies of Liveblocks are being loaded\nimport { detectDupes } from \"@liveblocks/core\";\n\ndeclare const PKG_NAME: string;\ndeclare const PKG_VERSION: string;\ndeclare const TSUP_FORMAT: string;\ndetectDupes(PKG_NAME, PKG_VERSION, TSUP_FORMAT);\n\n// -------------------------------------\n\nexport type {\n BaseUserMeta,\n BroadcastOptions,\n Client,\n History,\n Immutable,\n Json,\n JsonArray,\n JsonObject,\n JsonScalar,\n LiveListUpdate,\n LiveMapUpdate,\n LiveObjectUpdate,\n LiveStructure,\n LostConnectionEvent,\n Lson,\n LsonObject,\n Others,\n Room,\n Status,\n StorageStatus,\n StorageUpdate,\n User,\n} from \"@liveblocks/core\";\nexport {\n createClient,\n LiveList,\n LiveMap,\n LiveObject,\n shallow,\n toPlainLson,\n} from \"@liveblocks/core\";\n\n/**\n * Helper type to help users adopt to Lson types from interface definitions.\n * You should only use this to wrap interfaces you don't control. For more\n * information, see\n * https://liveblocks.io/docs/guides/limits#lson-constraint-and-interfaces\n */\n// prettier-ignore\nexport type EnsureJson<T> =\n // Retain `unknown` fields\n [unknown] extends [T] ? T :\n // Retain functions\n T extends (...args: unknown[]) => unknown ? T :\n // Resolve all other values explicitly\n { [K in keyof T]: EnsureJson<T[K]> };\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liveblocks/client",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5-test2",
|
|
4
4
|
"description": "A client that lets you interact with Liveblocks servers. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"test:watch": "jest --silent --verbose --color=always --passWithNoTests --watch"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@liveblocks/core": "1.1.
|
|
22
|
+
"@liveblocks/core": "1.1.5-test2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@liveblocks/eslint-config": "*",
|