jazz-tools 0.8.39 → 0.8.44
Sign up to get free protection for your applications and to get access to all the features.
- package/.turbo/turbo-build.log +12 -0
- package/CHANGELOG.md +16 -0
- package/package.json +3 -3
- package/src/tests/subscribe.test.ts +0 -1
@@ -0,0 +1,12 @@
|
|
1
|
+
|
2
|
+
> jazz-tools@0.8.44 build /home/runner/work/jazz/jazz/packages/jazz-tools
|
3
|
+
> rm -rf ./dist && pnpm run build:web && pnpm run build:native
|
4
|
+
|
5
|
+
|
6
|
+
> jazz-tools@0.8.44 build:web /home/runner/work/jazz/jazz/packages/jazz-tools
|
7
|
+
> tsc --sourceMap --outDir dist/web -p tsconfig.web.json
|
8
|
+
|
9
|
+
|
10
|
+
> jazz-tools@0.8.44 build:native /home/runner/work/jazz/jazz/packages/jazz-tools
|
11
|
+
> tsc --sourceMap --outDir dist/native -p tsconfig.native.json
|
12
|
+
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# jazz-tools
|
2
2
|
|
3
|
+
## 0.8.44
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [5d20c81]
|
8
|
+
- cojson@0.8.44
|
9
|
+
|
10
|
+
## 0.8.41
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- Updated dependencies [3252502]
|
15
|
+
- Updated dependencies [6370348]
|
16
|
+
- Updated dependencies [ac216b9]
|
17
|
+
- cojson@0.8.41
|
18
|
+
|
3
19
|
## 0.8.39
|
4
20
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
@@ -19,13 +19,13 @@
|
|
19
19
|
},
|
20
20
|
"type": "module",
|
21
21
|
"license": "MIT",
|
22
|
-
"version": "0.8.
|
22
|
+
"version": "0.8.44",
|
23
23
|
"dependencies": {
|
24
24
|
"fast-check": "^3.17.2",
|
25
|
-
"cojson": "0.8.
|
25
|
+
"cojson": "0.8.44"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
|
-
"typescript": "
|
28
|
+
"typescript": "~5.6.2",
|
29
29
|
"vitest": "1.5.3"
|
30
30
|
},
|
31
31
|
"madge": {
|
@@ -286,7 +286,6 @@ describe("subscribeToCoValue", () => {
|
|
286
286
|
const lastValue = updateFn.mock.lastCall[0];
|
287
287
|
expect(lastValue).not.toBe(initialValue);
|
288
288
|
expect(lastValue.name).toBe("Me and Luigi");
|
289
|
-
expect(initialValue.name).toBe("General");
|
290
289
|
|
291
290
|
expect(lastValue.messages).toBe(initialValue.messages);
|
292
291
|
expect(lastValue.messages[0]).toBe(initialValue.messages[0]);
|