Skip to content

Commit 4cf62da

Browse files
committed
Upgrade react-native from 0.67.3 to 0.71.7
- Upgrade RN dependencies and fix node type issue - Upgrade react-navigation to fix failing tests - react-navigation/react-navigation#9183 - Updated pods - Used upgrade helper to update pbxproj file - https://react-native-community.github.io/upgrade-helper/?from=0.67.3&to=0.71.6#RnDiffApp-ios-RnDiffApp.xcodeproj-project.pbxproj - Upgrade react-native-vector-icons from 9.1.0 to 9.2.0 - Fix warning oblador/react-native-vector-icons#1443 (comment) - Fix iOS configuration deprecated warning ``` warn --configuration has been deprecated. Use --mode instead. warn Parameters were automatically reassigned to --mode on this run. ``` - Fix iOS multiple Podfiles warning - https://stackoverflow.com/a/74341089/2421313 ``` warn Multiple Podfiles were found: ios/Podfile,vendor/bundle/ruby/2.7.0/gems/cocoapods-core-1.11.2/lib/cocoapods-core/Podfile. Choosing ios/Podfile automatically. If you would like to select a different one, you can configure it via "project.ios.sourceDir". You can learn more about it here: https://github.com/react-native-community/cli/blob/master/docs/configuration.md ``` - Remove .ruby-version - Recommended by the upgrade helper - facebook/react-native#36423
1 parent d74057b commit 4cf62da

34 files changed

Lines changed: 19133 additions & 15183 deletions

.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

.gitignore

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23+
ios/.xcode.env.local
2324

2425
# Android/IntelliJ
2526
#
@@ -29,29 +30,27 @@ build/
2930
local.properties
3031
*.iml
3132
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3236

3337
# node.js
3438
#
3539
node_modules/
3640
npm-debug.log
3741
yarn-error.log
3842

39-
# BUCK
40-
buck-out/
41-
\.buckd/
42-
*.keystore
43-
!debug.keystore
44-
4543
# fastlane
4644
#
4745
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
4846
# screenshots whenever they are needed.
4947
# For more information about the recommended setup visit:
5048
# https://docs.fastlane.tools/best-practices/source-control/
5149

52-
*/fastlane/report.xml
53-
*/fastlane/Preview.html
54-
*/fastlane/screenshots
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
5554

5655
# Bundle artifact
5756
*.jsbundle
@@ -60,5 +59,9 @@ buck-out/
6059
/vendor
6160
/template/vendor
6261

63-
# CocoaPods
62+
# Ruby / CocoaPods
6463
/ios/Pods/
64+
/vendor/bundle/
65+
66+
# Temporary files created by Metro to check the health of the file watcher
67+
.metro-health-check*

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18

.prettierrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
24
bracketSpacing: false,
3-
jsxBracketSameLine: true,
45
singleQuote: true,
56
trailingComma: 'all',
6-
arrowParens: 'avoid',
77
};

.ruby-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
source 'https://rubygems.org'
2+
23
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
3-
ruby '2.7.4'
4-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
4+
ruby '>= 2.6.10'
5+
6+
gem 'cocoapods', '>= 1.11.3'

android/app/_BUCK

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)