Skip to content

Commit 0dc38c8

Browse files
committed
types and deps
1 parent c94cbb8 commit 0dc38c8

File tree

3 files changed

+190
-28
lines changed

3 files changed

+190
-28
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"peerDependencies": {
3535
"react-native": ">=0.62.0",
3636
"react-native-gesture-handler": ">=2.0.0",
37-
"react-native-reanimated": ">=2.8.0"
37+
"react-native-reanimated": ">=3.8.0"
3838
},
3939
"devDependencies": {
4040
"@react-native-community/eslint-config": "^2.0.0",
@@ -49,9 +49,9 @@
4949
"react": "~16.9.0",
5050
"react-native": "^0.62.2",
5151
"react-native-builder-bob": "^0.18.1",
52-
"react-native-gesture-handler": "^2.0.0",
53-
"react-native-reanimated": "^3.5.0",
54-
"typescript": "^4.2.4"
52+
"react-native-gesture-handler": "^2.18.1",
53+
"react-native-reanimated": "^3.14.0",
54+
"typescript": "^5.3.0"
5555
},
5656
"react-native-builder-bob": {
5757
"source": "src",

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ const styles = StyleSheet.create({
675675
});
676676

677677
const InfinitePagerContext = React.createContext({
678-
activePagers: makeMutable([] as string[]),
679-
pagers: makeMutable([] as string[]),
678+
activePagers: makeMutable([] as string[]) as SharedValue<string[]>,
679+
pagers: makeMutable([] as string[]) as SharedValue<string[]>,
680680
nestingDepth: -1,
681681
});
682682

0 commit comments

Comments
 (0)