Skip to content

Commit c278c94

Browse files
m-bertj-piasecki
authored andcommitted
Update ReanimatedSwipeable module path (#3605)
## Description #3579 introduced changes to `ReanimatedSwipeable`. However, it didn't update path to component in `tsconfig`, thus CI was failing. ## Test plan Check CI (+ `yarn ts-check`)
1 parent 2fac004 commit c278c94

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

apps/basic-example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"../../packages/react-native-gesture-handler/src"
99
],
1010
"react-native-gesture-handler/ReanimatedSwipeable": [
11-
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable.tsx"
11+
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/"
1212
],
1313
"react-native-gesture-handler/ReanimatedDrawerLayout": [
1414
"../../packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx"

apps/common-app/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"../../packages/react-native-gesture-handler/src"
1010
],
1111
"react-native-gesture-handler/ReanimatedSwipeable": [
12-
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable.tsx"
12+
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/"
1313
],
1414
"react-native-gesture-handler/ReanimatedDrawerLayout": [
1515
"../../packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx"

apps/expo-example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"../../packages/react-native-gesture-handler/src"
1010
],
1111
"react-native-gesture-handler/ReanimatedSwipeable": [
12-
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable.tsx"
12+
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/"
1313
],
1414
"react-native-gesture-handler/ReanimatedDrawerLayout": [
1515
"../../packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx"

apps/macos-example/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"../../packages/react-native-gesture-handler/src"
1010
],
1111
"react-native-gesture-handler/ReanimatedSwipeable": [
12-
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable.tsx"
12+
"../../packages/react-native-gesture-handler/src/components/ReanimatedSwipeable/"
1313
],
1414
"react-native-gesture-handler/ReanimatedDrawerLayout": [
1515
"../../packages/react-native-gesture-handler/src/components/ReanimatedDrawerLayout.tsx"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"main": "../lib/commonjs/components/ReanimatedSwipeable",
3-
"module": "../lib/module/components/ReanimatedSwipeable",
4-
"react-native": "../src/components/ReanimatedSwipeable",
5-
"types": "../lib/typescript/components/ReanimatedSwipeable.d.ts"
2+
"main": "../lib/commonjs/components/ReanimatedSwipeable/",
3+
"module": "../lib/module/components/ReanimatedSwipeable/",
4+
"react-native": "../src/components/ReanimatedSwipeable/",
5+
"types": "../lib/typescript/components/ReanimatedSwipeable/"
66
}

0 commit comments

Comments
 (0)