@granite-js/native 0.1.19 → 0.1.21

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @granite-js/native
2
2
 
3
+ ## 0.1.21
4
+
5
+ ## 0.1.20
6
+
7
+ ### Patch Changes
8
+
9
+ - 1df5883: update package.json meta to supports any moduleResolutions
10
+
3
11
  ## 0.1.19
4
12
 
5
13
  ## 0.1.18
@@ -0,0 +1 @@
1
+ import 'react-native-gesture-handler/jestSetup';
@@ -0,0 +1,3 @@
1
+ declare const fingerprint: string;
2
+
3
+ export default fingerprint;
@@ -0,0 +1 @@
1
+ export { default } from './fingerprint/index';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granite-js/native",
3
- "version": "0.1.19",
3
+ "version": "0.1.21",
4
4
  "description": "A native module hub package for Granite",
5
5
  "scripts": {
6
6
  "prepack": "yarn build",
@@ -72,14 +72,18 @@
72
72
  "types": "./dist/react-native-pager-view.d.ts",
73
73
  "default": "./src/react-native-pager-view.ts"
74
74
  },
75
- "./react-native-gesture-handler/jestSetup": "./src/react-native-gesture-handler/jestSetup.js",
75
+ "./react-native-gesture-handler/jestSetup": {
76
+ "types": "./dist/react-native-gesture-handler/jestSetup.d.ts",
77
+ "default": "./src/react-native-gesture-handler/jestSetup.js"
78
+ },
76
79
  "./react-native-video": {
77
80
  "types": "./dist/react-native-video.d.ts",
78
81
  "default": "./src/react-native-video.ts"
79
82
  },
80
83
  "./fingerprint": {
81
- "types": "./dist/fingerprint.d.ts",
82
- "default": "./src/fingerprint.ts"
84
+ "types": "./fingerprint/index.d.ts",
85
+ "import": "./fingerprint/index.mjs",
86
+ "require": "./fingerprint/index.js"
83
87
  },
84
88
  "./package.json": "./package.json"
85
89
  },
@@ -0,0 +1 @@
1
+ export * from '../dist/react-native-gesture-handler';
@@ -0,0 +1 @@
1
+ export * from '../dist/react-native-gesture-handler/jestSetup';
@@ -0,0 +1 @@
1
+ import 'react-native-gesture-handler/jestSetup';
@@ -1,2 +0,0 @@
1
- declare const _default: "0fd6085a77f7cbe28d0b53325d877ca9";
2
- export default _default;
@@ -1 +0,0 @@
1
- export * from './dist/react-native-gesture-handler';
@@ -1,2 +0,0 @@
1
- // This file is auto-generated by the generate-fingerprint script.
2
- export default '0fd6085a77f7cbe28d0b53325d877ca9';