Skip to content

Commit 74b4f3c

Browse files
authored
Merge pull request #345 from alantoa/rn-0.74-compatibility
2 parents 95a1044 + 57857c1 commit 74b4f3c

File tree

7 files changed

+20782
-28211
lines changed

7 files changed

+20782
-28211
lines changed

examples/sample/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
"web": "expo start --web"
99
},
1010
"dependencies": {
11-
"expo": "~50.0.7",
12-
"expo-status-bar": "~1.11.1",
11+
"expo": "~51.0.6",
12+
"expo-status-bar": "~1.12.1",
1313
"moti": "^0.27.2",
1414
"react": "18.2.0",
15-
"react-native": "0.73.4",
16-
"react-native-gesture-handler": "~2.14.0",
17-
"react-native-reanimated": "~3.6.2"
15+
"react-native": "^0.74.1",
16+
"react-native-gesture-handler": "~2.16.1",
17+
"react-native-reanimated": "~3.10.1"
1818
},
1919
"devDependencies": {
2020
"@babel/core": "^7.20.0",

examples/sample/yarn.lock

Lines changed: 6680 additions & 9289 deletions
Large diffs are not rendered by default.

examples/with-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"raf": "^3.4.1",
1111
"react": "17.0.1",
1212
"react-dom": "17.0.1",
13-
"react-native-reanimated": "3.5.4",
13+
"react-native-reanimated": "3.11.0",
1414
"react-native-unimodules": "~0.9.0",
1515
"react-native-web": "0.15.3"
1616
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"jest": "^26.6.1",
8282
"lerna": "^3.22.1",
8383
"prettier": "^2.2.1",
84-
"react-native": "^0.73.4",
84+
"react-native": "^0.74.1",
8585
"typescript": "^5.2.0"
8686
},
8787
"author": "Fernando Rojo <frojo@sas.upenn.edu>",

packages/moti/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"expo-linear-gradient": "^10.0.3",
5252
"expo-module-scripts": "^3.4.1",
5353
"react-native-linear-gradient": "^2.6.2",
54-
"react-native-reanimated": "3.5.4",
54+
"react-native-reanimated": "3.11.0",
5555
"typescript": "^5.2.0"
5656
},
5757
"react-native-builder-bob": {

packages/moti/src/core/types.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type {
2-
PerpectiveTransform,
2+
PerspectiveTransform,
33
RotateTransform,
44
RotateXTransform,
55
RotateYTransform,
@@ -14,6 +14,7 @@ import type {
1414
ImageStyle,
1515
TextStyle,
1616
ViewStyle,
17+
1718
} from 'react-native'
1819
import type {
1920
SharedValue,
@@ -23,7 +24,7 @@ import type {
2324
DerivedValue,
2425
} from 'react-native-reanimated'
2526

26-
export type Transforms = PerpectiveTransform &
27+
export type Transforms = PerspectiveTransform &
2728
RotateTransform &
2829
RotateXTransform &
2930
RotateYTransform &

0 commit comments

Comments
 (0)