jazz-tools 0.9.18 → 0.9.20
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +13 -0
- package/dist/{chunk-LRDIS2Q2.js → chunk-D7BVHLME.js} +4 -4
- package/dist/chunk-D7BVHLME.js.map +1 -0
- package/dist/index.native.js +1 -1
- package/dist/index.web.js +1 -1
- package/dist/testing.js +1 -1
- package/package.json +2 -2
- package/src/implementation/schema.ts +4 -1
- package/src/implementation/symbols.ts +5 -3
- package/dist/chunk-LRDIS2Q2.js.map +0 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> jazz-tools@0.9.
|
2
|
+
> jazz-tools@0.9.20 build /home/runner/work/jazz/jazz/packages/jazz-tools
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: {"index.web":"src/index.web.ts","index.native":"src/index.native.ts","testing":"src/testing.ts"}
|
@@ -12,9 +12,9 @@
|
|
12
12
|
[32mESM[39m [1mdist/index.web.js [22m[32m1.27 KB[39m
|
13
13
|
[32mESM[39m [1mdist/index.native.js [22m[32m1.26 KB[39m
|
14
14
|
[32mESM[39m [1mdist/testing.js [22m[32m3.43 KB[39m
|
15
|
-
[32mESM[39m [1mdist/chunk-
|
15
|
+
[32mESM[39m [1mdist/chunk-D7BVHLME.js [22m[32m96.70 KB[39m
|
16
16
|
[32mESM[39m [1mdist/index.web.js.map [22m[32m276.00 B[39m
|
17
17
|
[32mESM[39m [1mdist/index.native.js.map [22m[32m286.00 B[39m
|
18
|
+
[32mESM[39m [1mdist/chunk-D7BVHLME.js.map [22m[32m239.87 KB[39m
|
18
19
|
[32mESM[39m [1mdist/testing.js.map [22m[32m6.94 KB[39m
|
19
|
-
[32mESM[39m
|
20
|
-
[32mESM[39m ⚡️ Build success in 122ms
|
20
|
+
[32mESM[39m ⚡️ Build success in 118ms
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# jazz-tools
|
2
2
|
|
3
|
+
## 0.9.20
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- b01cc1f: Switches from symbols to prefixes strings for private properties
|
8
|
+
|
9
|
+
## 0.9.19
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- Updated dependencies [6ad0a9f]
|
14
|
+
- cojson@0.9.19
|
15
|
+
|
3
16
|
## 0.9.18
|
4
17
|
|
5
18
|
### Patch Changes
|
@@ -40,9 +40,9 @@ import { RawAccount as RawAccount2 } from "cojson";
|
|
40
40
|
var inspect = Symbol.for("nodejs.util.inspect.custom");
|
41
41
|
|
42
42
|
// src/implementation/symbols.ts
|
43
|
-
var SchemaInit =
|
44
|
-
var ItemsSym =
|
45
|
-
var MembersSym =
|
43
|
+
var SchemaInit = "$SchemaInit$";
|
44
|
+
var ItemsSym = "$items$";
|
45
|
+
var MembersSym = "$members$";
|
46
46
|
|
47
47
|
// src/coValues/deepLoading.ts
|
48
48
|
function fulfillsDepth(depth, value) {
|
@@ -3438,4 +3438,4 @@ export {
|
|
3438
3438
|
consumeInviteLink
|
3439
3439
|
};
|
3440
3440
|
/* istanbul ignore file -- @preserve */
|
3441
|
-
//# sourceMappingURL=chunk-
|
3441
|
+
//# sourceMappingURL=chunk-D7BVHLME.js.map
|