@liveblocks/core 0.18.3-test1 → 0.18.3-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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +7 -19
package/dist/index.js CHANGED
@@ -3748,7 +3748,7 @@ function prepareCreateWebSocket(liveblocksServer, WebSocketPolyfill) {
3748
3748
  const ws = WebSocketPolyfill || WebSocket;
3749
3749
  return (token) => {
3750
3750
  return new ws(
3751
- `${liveblocksServer}/?token=${token}&version=${true ? "0.18.3-test1" : "dev"}`
3751
+ `${liveblocksServer}/?token=${token}&version=${true ? "0.18.3-test2" : "dev"}`
3752
3752
  );
3753
3753
  };
3754
3754
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liveblocks/core",
3
- "version": "0.18.3-test1",
3
+ "version": "0.18.3-test2",
4
4
  "description": "Shared code and foundational internals for Liveblocks",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -19,35 +19,23 @@
19
19
  "url": "https://github.com/liveblocks/liveblocks/issues"
20
20
  },
21
21
  "scripts": {
22
+ "dev": "tsup --watch --onSuccess ../../scripts/build.sh",
22
23
  "build": "tsup && ../../scripts/build.sh",
23
24
  "format": "eslint --fix src/ && prettier --write src/",
24
25
  "lint": "eslint src/",
25
- "test": "jest --watch --silent --verbose --config=./jest.config.js",
26
- "test-ci": "jest --silent --verbose",
26
+ "test": "jest --silent --verbose",
27
+ "test:watch": "jest --silent --verbose --watch",
27
28
  "test-e2e": "jest --silent --verbose --config=./jest.config.e2e.js"
28
29
  },
29
30
  "license": "Apache-2.0",
30
31
  "devDependencies": {
31
- "@types/jest": "^29.1.2",
32
- "@types/node-fetch": "^2.6.1",
32
+ "@liveblocks/eslint-config": "*",
33
+ "@liveblocks/jest-config": "*",
33
34
  "@types/ws": "^8.5.3",
34
- "@typescript-eslint/eslint-plugin": "^5.26.0",
35
- "@typescript-eslint/parser": "^5.26.0",
36
35
  "dotenv": "^16.0.3",
37
- "eslint": "^8.12.0",
38
- "eslint-plugin-import": "^2.26.0",
39
36
  "eslint-plugin-rulesdir": "^0.2.1",
40
- "eslint-plugin-simple-import-sort": "^7.0.0",
41
37
  "fast-check": "^3.0.1",
42
- "jest": "^29.1.2",
43
- "jest-environment-jsdom": "^29.1.2",
44
- "msw": "^0.39.1",
45
- "node-fetch": "2.6.7",
46
- "prettier": "^2.7.1",
47
- "ts-jest": "^29.0.3",
48
- "tsup": "^6.2.2",
49
- "typescript": "^4.7.2",
50
- "whatwg-fetch": "^3.6.2",
38
+ "msw": "^0.47.4",
51
39
  "ws": "^8.5.0"
52
40
  },
53
41
  "repository": {