@liveblocks/client 0.19.0-beta0 → 0.19.1-test1

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/package.json +6 -6
  2. package/dist/index.mjs +0 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/client",
3
- "version": "0.19.0-beta0",
3
+ "version": "0.19.1-test1",
4
4
  "description": "A client that lets you interact with Liveblocks servers.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -19,16 +19,16 @@
19
19
  "url": "https://github.com/liveblocks/liveblocks/issues"
20
20
  },
21
21
  "scripts": {
22
- "dev": "tsup --watch --onSuccess ../../scripts/build.sh",
23
- "build": "tsup && ../../scripts/build.sh",
22
+ "dev": "tsup --watch",
23
+ "build": "tsup",
24
24
  "format": "eslint --fix src/ && prettier --write src/",
25
25
  "lint": "eslint src/",
26
- "test": "jest --silent --verbose --passWithNoTests",
27
- "test:watch": "jest --silent --verbose --passWithNoTests --watch"
26
+ "test": "jest --silent --verbose --color=always --passWithNoTests",
27
+ "test:watch": "jest --silent --verbose --color=always --passWithNoTests --watch"
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@liveblocks/core": "0.19.0-beta0"
31
+ "@liveblocks/core": "0.19.1-test1"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@liveblocks/eslint-config": "*",
package/dist/index.mjs DELETED
@@ -1,8 +0,0 @@
1
- import mod from "./index.js";
2
-
3
- export default mod;
4
- export const LiveList = mod.LiveList;
5
- export const LiveMap = mod.LiveMap;
6
- export const LiveObject = mod.LiveObject;
7
- export const createClient = mod.createClient;
8
- export const shallow = mod.shallow;