jazz-react-native 0.10.10 → 0.10.11

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > jazz-react-native@0.10.10 build /home/runner/_work/jazz/jazz/packages/jazz-react-native
2
+ > jazz-react-native@0.10.11 build /home/runner/_work/jazz/jazz/packages/jazz-react-native
3
3
  > rm -rf ./dist && tsc --sourceMap --outDir dist
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # jazz-browser
2
2
 
3
+ ## 0.10.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 5a54e4a: Don't export RNQuickCrypto to avoid install errors
8
+
3
9
  ## 0.10.10
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -3,7 +3,6 @@ export * from "./auth/auth.js";
3
3
  export * from "./storage/kv-store-context.js";
4
4
  export * from "./hooks.js";
5
5
  export * from "./media.js";
6
- export * from "./crypto/index.js";
7
6
  export { parseInviteLink } from "jazz-tools";
8
7
  export { createInviteLink, setupKvStore } from "./platform.js";
9
8
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAElC,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,+BAA+B,CAAC;AAC9C,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jazz-react-native",
3
- "version": "0.10.10",
3
+ "version": "0.10.11",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -28,11 +28,11 @@
28
28
  "@scure/base": "1.2.1",
29
29
  "react-native-nitro-modules": "0.21.0",
30
30
  "react-native-quick-crypto": "1.0.0-beta.12",
31
- "cojson-storage-rn-sqlite": "0.8.66",
32
31
  "cojson": "0.10.8",
32
+ "jazz-tools": "0.10.8",
33
33
  "jazz-react-core": "0.10.8",
34
- "cojson-transport-ws": "0.10.8",
35
- "jazz-tools": "0.10.8"
34
+ "cojson-storage-rn-sqlite": "0.8.66",
35
+ "cojson-transport-ws": "0.10.8"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@react-native-community/netinfo": "*",
package/src/index.ts CHANGED
@@ -3,7 +3,6 @@ export * from "./auth/auth.js";
3
3
  export * from "./storage/kv-store-context.js";
4
4
  export * from "./hooks.js";
5
5
  export * from "./media.js";
6
- export * from "./crypto/index.js";
7
6
 
8
7
  export { parseInviteLink } from "jazz-tools";
9
8
  export { createInviteLink, setupKvStore } from "./platform.js";