@granite-js/native 0.1.25 → 0.1.27
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 +11 -0
- package/dist/lottie-react-native.d.ts +3 -1
- package/dist/react-native-fast-image.d.ts +3 -1
- package/dist/react-native-pager-view.d.ts +3 -1
- package/dist/react-native-video.d.ts +3 -1
- package/package.json +6 -1
- package/src/lottie-react-native.ts +4 -1
- package/src/react-native-fast-image.ts +4 -1
- package/src/react-native-pager-view.ts +4 -1
- package/src/react-native-video.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @granite-js/native
|
|
2
2
|
|
|
3
|
+
## 0.1.27
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e32b020: ci: oidc
|
|
8
|
+
- 1dd9179: feat(native): add named exports for native modules
|
|
9
|
+
|
|
10
|
+
Add explicit named exports for lottie-react-native, react-native-fast-image, react-native-pager-view, and react-native-video to improve tree-shaking and provide better TypeScript support.
|
|
11
|
+
|
|
12
|
+
## 0.1.26
|
|
13
|
+
|
|
3
14
|
## 0.1.25
|
|
4
15
|
|
|
5
16
|
## 0.1.24
|
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@granite-js/native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.27",
|
|
4
4
|
"description": "A native module hub package for Granite",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/toss/granite.git",
|
|
8
|
+
"directory": "packages/native"
|
|
9
|
+
},
|
|
5
10
|
"scripts": {
|
|
6
11
|
"prepack": "yarn build",
|
|
7
12
|
"typecheck": "tsc --noEmit",
|