jazz-react-native 0.13.0 → 0.13.1

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.13.0 build /home/runner/_work/jazz/jazz/packages/jazz-react-native
2
+ > jazz-react-native@0.13.1 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.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 63a7aa0: Add exports for clerk and crypto to make import shortcuts work everywhere
8
+
3
9
  ## 0.13.0
4
10
 
5
11
  ### Minor Changes
@@ -0,0 +1,2 @@
1
+ // Re-export the crypto module from the dist folder to make the `jazz-react-native/crypto` import work everywhere
2
+ export * from "jazz-react-native-core/dist/crypto";
@@ -0,0 +1,2 @@
1
+ // Re-export the crypto module from the dist folder to make the `jazz-react-native/crypto` import work everywhere
2
+ export * from "jazz-react-native-core/dist/crypto";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jazz-react-native",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -12,6 +12,11 @@
12
12
  "types": "./dist/index.d.ts",
13
13
  "default": "./dist/index.js"
14
14
  },
15
+ "./crypto": {
16
+ "react-native": "./crypto/index.js",
17
+ "types": "./crypto/index.d.ts",
18
+ "default": "./crypto/index.js"
19
+ },
15
20
  "./testing": {
16
21
  "react-native": "./dist/testing.js",
17
22
  "types": "./dist/testing.d.ts",