Skip to content

Commit 7cc80ae

Browse files
committed
Move script to package
1 parent 38fbce3 commit 7cc80ae

File tree

6 files changed

+31
-30
lines changed

6 files changed

+31
-30
lines changed

apps/basic-example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2552,7 +2552,7 @@ SPEC CHECKSUMS:
25522552
ReactAppDependencyProvider: ba145f1c381299018032c57386bc01cf7da36a79
25532553
ReactCodegen: 17e20a7ea755a372d5f8584da8198813d5e84358
25542554
ReactCommon: 61f2cc9427acc386355f0a1008ceacf35ab3eb21
2555-
RNGestureHandler: 0fbc8afacdf8e7fcd4dc5cc1773bfb9cb4f710e8
2555+
RNGestureHandler: eeb519bb8f93a48e91d3b8848446ba123203b530
25562556
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
25572557
Yoga: 670c6752f06f48ee4e172a75988a963ea53ea2a5
25582558

apps/macos-example/macos/Podfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1505,7 +1505,7 @@ PODS:
15051505
- ReactCommon/turbomodule/bridging
15061506
- ReactCommon/turbomodule/core
15071507
- Yoga
1508-
- RNReanimated (3.18.0):
1508+
- RNReanimated (3.19.0):
15091509
- DoubleConversion
15101510
- glog
15111511
- RCT-Folly (= 2024.11.18.00)
@@ -1525,10 +1525,10 @@ PODS:
15251525
- ReactCodegen
15261526
- ReactCommon/turbomodule/bridging
15271527
- ReactCommon/turbomodule/core
1528-
- RNReanimated/reanimated (= 3.18.0)
1529-
- RNReanimated/worklets (= 3.18.0)
1528+
- RNReanimated/reanimated (= 3.19.0)
1529+
- RNReanimated/worklets (= 3.19.0)
15301530
- Yoga
1531-
- RNReanimated/reanimated (3.18.0):
1531+
- RNReanimated/reanimated (3.19.0):
15321532
- DoubleConversion
15331533
- glog
15341534
- RCT-Folly (= 2024.11.18.00)
@@ -1548,9 +1548,9 @@ PODS:
15481548
- ReactCodegen
15491549
- ReactCommon/turbomodule/bridging
15501550
- ReactCommon/turbomodule/core
1551-
- RNReanimated/reanimated/apple (= 3.18.0)
1551+
- RNReanimated/reanimated/apple (= 3.19.0)
15521552
- Yoga
1553-
- RNReanimated/reanimated/apple (3.18.0):
1553+
- RNReanimated/reanimated/apple (3.19.0):
15541554
- DoubleConversion
15551555
- glog
15561556
- RCT-Folly (= 2024.11.18.00)
@@ -1571,7 +1571,7 @@ PODS:
15711571
- ReactCommon/turbomodule/bridging
15721572
- ReactCommon/turbomodule/core
15731573
- Yoga
1574-
- RNReanimated/worklets (3.18.0):
1574+
- RNReanimated/worklets (3.19.0):
15751575
- DoubleConversion
15761576
- glog
15771577
- RCT-Folly (= 2024.11.18.00)
@@ -1591,9 +1591,9 @@ PODS:
15911591
- ReactCodegen
15921592
- ReactCommon/turbomodule/bridging
15931593
- ReactCommon/turbomodule/core
1594-
- RNReanimated/worklets/apple (= 3.18.0)
1594+
- RNReanimated/worklets/apple (= 3.19.0)
15951595
- Yoga
1596-
- RNReanimated/worklets/apple (3.18.0):
1596+
- RNReanimated/worklets/apple (3.19.0):
15971597
- DoubleConversion
15981598
- glog
15991599
- RCT-Folly (= 2024.11.18.00)
@@ -1901,8 +1901,8 @@ SPEC CHECKSUMS:
19011901
ReactCodegen: 3d30536e47f328f0a297d897cb789e46a092c2a6
19021902
ReactCommon: 0f22e3dd34a8215b8482778898f6e1e95572c498
19031903
RNCAsyncStorage: b9f5f78da5d16a853fe3dc22e8268d932fc45a83
1904-
RNGestureHandler: 9ea0b24ab06251465e366792c8d1a8f96d7a41ad
1905-
RNReanimated: 6ccc6e6826ada6643d2e6474d95f37a1fbf7771d
1904+
RNGestureHandler: 6ba0bff67b3129fcc150eb1e35b9aeb780cc6c4d
1905+
RNReanimated: 1d6b8c542ec475bca3a87ba3a16ff331c9a79096
19061906
RNSVG: 4c63b12b7b5761063bca4f20dd228f6a8370f614
19071907
SocketRocket: 03f7111df1a343b162bf5b06ead333be808e1e0a
19081908
Yoga: f89a870053f1a8fbee8c98e35a1b9eff44ce2015

packages/react-native-gesture-handler/RNGestureHandler.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require "json"
2-
require_relative '../../scripts/gesture_handler_utils'
2+
require_relative './scripts/gesture_handler_utils'
33

44
is_gh_example_app = ENV["GH_EXAMPLE_APP_NAME"] != nil
55

packages/react-native-gesture-handler/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"android/svg",
4747
"android/nosvg",
4848
"apple/",
49+
"scripts/",
4950
"Swipeable/",
5051
"ReanimatedSwipeable/",
5152
"jest-utils/",

yarn.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -296,12 +296,12 @@ __metadata:
296296
linkType: hard
297297

298298
"@babel/helpers@npm:^7.27.6":
299-
version: 7.27.6
300-
resolution: "@babel/helpers@npm:7.27.6"
299+
version: 7.28.2
300+
resolution: "@babel/helpers@npm:7.28.2"
301301
dependencies:
302302
"@babel/template": "npm:^7.27.2"
303-
"@babel/types": "npm:^7.27.6"
304-
checksum: 10c0/448bac96ef8b0f21f2294a826df9de6bf4026fd023f8a6bb6c782fe3e61946801ca24381490b8e58d861fee75cd695a1882921afbf1f53b0275ee68c938bd6d3
303+
"@babel/types": "npm:^7.28.2"
304+
checksum: 10c0/f3e7b21517e2699c4ca193663ecfb1bf1b2ae2762d8ba4a9f1786feaca0d6984537fc60bf2206e92c43640a6dada6b438f523cc1ad78610d0151aeb061b37f63
305305
languageName: node
306306
linkType: hard
307307

@@ -1553,9 +1553,9 @@ __metadata:
15531553
linkType: hard
15541554

15551555
"@babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.0, @babel/runtime@npm:^7.25.0":
1556-
version: 7.27.6
1557-
resolution: "@babel/runtime@npm:7.27.6"
1558-
checksum: 10c0/89726be83f356f511dcdb74d3ea4d873a5f0cf0017d4530cb53aa27380c01ca102d573eff8b8b77815e624b1f8c24e7f0311834ad4fb632c90a770fda00bd4c8
1556+
version: 7.28.2
1557+
resolution: "@babel/runtime@npm:7.28.2"
1558+
checksum: 10c0/c20afe253629d53a405a610b12a62ac74d341a2c1e0fb202bbef0c118f6b5c84f94bf16039f58fd0483dd256901259930a43976845bdeb180cab1f882c21b6e0
15591559
languageName: node
15601560
linkType: hard
15611561

@@ -1585,13 +1585,13 @@ __metadata:
15851585
languageName: node
15861586
linkType: hard
15871587

1588-
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.27.6, @babel/types@npm:^7.28.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
1589-
version: 7.28.1
1590-
resolution: "@babel/types@npm:7.28.1"
1588+
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.20.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.2, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.0, @babel/types@npm:^7.28.2, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4":
1589+
version: 7.28.2
1590+
resolution: "@babel/types@npm:7.28.2"
15911591
dependencies:
15921592
"@babel/helper-string-parser": "npm:^7.27.1"
15931593
"@babel/helper-validator-identifier": "npm:^7.27.1"
1594-
checksum: 10c0/5e99b346c11ee42ffb0cadc28159fe0b184d865a2cc1593df79b199772a534f6453969b4942aa5e4a55a3081863096e1cc3fc1c724d826926dc787cf229b845d
1594+
checksum: 10c0/24b11c9368e7e2c291fe3c1bcd1ed66f6593a3975f479cbb9dd7b8c8d8eab8a962b0d2fca616c043396ce82500ac7d23d594fbbbd013828182c01596370a0b10
15951595
languageName: node
15961596
linkType: hard
15971597

@@ -8965,9 +8965,9 @@ __metadata:
89658965
linkType: hard
89668966

89678967
"flow-parser@npm:0.*":
8968-
version: 0.276.0
8969-
resolution: "flow-parser@npm:0.276.0"
8970-
checksum: 10c0/e0bc0753d9c46afc0a4726f10ece1f594b035a2f79a36ee0b32f858f6b27f75e84c92577ef3864e3195383461646d6eeabf0292d9dba2534b168c253fc4f0ccb
8968+
version: 0.277.0
8969+
resolution: "flow-parser@npm:0.277.0"
8970+
checksum: 10c0/1fa42488554f6b695e712ef6aa885b854745a5b623a9b920b47bb9d77eed0a44c6bfa2a583a348cdbbcedf455f7e5501eeff2232283ea7b870f7263cb424c7b2
89718971
languageName: node
89728972
linkType: hard
89738973

@@ -17274,8 +17274,8 @@ __metadata:
1727417274
linkType: hard
1727517275

1727617276
"zod@npm:^4.0.5":
17277-
version: 4.0.5
17278-
resolution: "zod@npm:4.0.5"
17279-
checksum: 10c0/59449d731ca63849b6bcb14300aa6e2f042d440b3ed294b45c248519aec78780f85a5d1939a62c2ce82e9dc60afca77c8005e0a98d7517b0c2586d6c76940424
17277+
version: 4.0.8
17278+
resolution: "zod@npm:4.0.8"
17279+
checksum: 10c0/a650a3fc01b6bc4d623cebad1ebcd7358a4465b57724cb3e1b9270cb8edbbf2a2ec86836118a551e214a80cb1dc74bbfa5ca5f735e0614d1bba784a5b6e830b0
1728017280
languageName: node
1728117281
linkType: hard

0 commit comments

Comments
 (0)