Skip to content

Commit 649c91a

Browse files
dstdnkdeorst
andauthored
Fix deps not linked on iOS. Fix installation problem with detox. (#274)
* Fix deps not linked on iOS. Fix installation problem with detox. * Updated config.yml Co-authored-by: Dmitry Stadnik <[email protected]>
1 parent 45c2a54 commit 649c91a

File tree

5 files changed

+146
-43
lines changed

5 files changed

+146
-43
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
rn: react-native-community/react-native@2.0.1
4+
rn: react-native-community/react-native@5.1.0
55

66
jobs:
77
checkout_code:

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ PODS:
182182
- React-cxxreact (= 0.62.2)
183183
- React-jsi (= 0.62.2)
184184
- React-jsinspector (0.62.2)
185-
- react-native-slider (3.0.2):
185+
- react-native-slider (4.0.0-rc.2):
186186
- React-Core
187187
- React-RCTActionSheet (0.62.2):
188188
- React-Core/RCTActionSheetHeaders (= 0.62.2)
@@ -261,7 +261,7 @@ DEPENDENCIES:
261261
- React-jsi (from `../../node_modules/react-native/ReactCommon/jsi`)
262262
- React-jsiexecutor (from `../../node_modules/react-native/ReactCommon/jsiexecutor`)
263263
- React-jsinspector (from `../../node_modules/react-native/ReactCommon/jsinspector`)
264-
- "react-native-slider (from `../node_modules/@react-native-community/slider`)"
264+
- react-native-slider (from `../../src`)
265265
- React-RCTActionSheet (from `../../node_modules/react-native/Libraries/ActionSheetIOS`)
266266
- React-RCTAnimation (from `../../node_modules/react-native/Libraries/NativeAnimation`)
267267
- React-RCTBlob (from `../../node_modules/react-native/Libraries/Blob`)
@@ -309,7 +309,7 @@ EXTERNAL SOURCES:
309309
React-jsinspector:
310310
:path: "../../node_modules/react-native/ReactCommon/jsinspector"
311311
react-native-slider:
312-
:path: "../node_modules/@react-native-community/slider"
312+
:path: "../../src"
313313
React-RCTActionSheet:
314314
:path: "../../node_modules/react-native/Libraries/ActionSheetIOS"
315315
React-RCTAnimation:
@@ -349,7 +349,7 @@ SPEC CHECKSUMS:
349349
React-jsi: b6dc94a6a12ff98e8877287a0b7620d365201161
350350
React-jsiexecutor: 1540d1c01bb493ae3124ed83351b1b6a155db7da
351351
React-jsinspector: 512e560d0e985d0e8c479a54a4e5c147a9c83493
352-
react-native-slider: 912097f311e20780e1eec115e4c127c2bb405dcf
352+
react-native-slider: b0516fffccae0858ce1ab73ba1e80188d2041a27
353353
React-RCTActionSheet: f41ea8a811aac770e0cc6e0ad6b270c644ea8b7c
354354
React-RCTAnimation: 49ab98b1c1ff4445148b72a3d61554138565bad0
355355
React-RCTBlob: a332773f0ebc413a0ce85942a55b064471587a71
@@ -364,4 +364,4 @@ SPEC CHECKSUMS:
364364

365365
PODFILE CHECKSUM: 65ed4e66fef8e5bea5ac04bddc5f5646eead8fdb
366366

367-
COCOAPODS: 1.9.3
367+
COCOAPODS: 1.10.1

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"run:web": "expo web"
1111
},
1212
"dependencies": {
13-
"@react-native-community/slider": "./src",
13+
"@react-native-community/slider": "^4.0.0-rc.2",
1414
"babel-preset-expo": "^8.2.1",
1515
"expo": "^37.0.12",
1616
"react-dom": "~16.9.0",

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@react-native-community/eslint-config": "0.0.5",
3232
"babel-jest": "^24.9.0",
3333
"babel-plugin-module-resolver": "3.1.3",
34-
"detox": "12.4.1",
34+
"detox": "^18.9.0",
3535
"eslint": "^6.5.1",
3636
"flow-bin": "0.113.0",
3737
"jest": "^24.9.0",

0 commit comments

Comments
 (0)