Skip to content

Commit f843acd

Browse files
authored
Merge pull request #111 from flatlogic/migrate-to-rn-0.72.2
Migrate to rn 0.72.2
2 parents 2dbd856 + 6a5a067 commit f843acd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+6185
-3112
lines changed

.buckconfig

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

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

.eslintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"extends": ["airbnb", "prettier"],
2+
"extends": ["@react-native", "prettier"],
33
"plugins": ["react", "jsx-a11y", "import"],
4-
"parser": "babel-eslint",
4+
"parser": "@babel/eslint-parser",
55
"rules": {
66
"react/jsx-filename-extension": "off",
77
"react/destructuring-assignment": "off",
@@ -13,4 +13,4 @@
1313
"react/jsx-one-expression-per-line": "off",
1414
"react/require-default-props": "off"
1515
}
16-
}
16+
}

.flowconfig

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

.gitattributes

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

.gitignore

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ DerivedData
2121
*.ipa
2222
*.xcuserstate
2323
project.xcworkspace
24+
ios/.xcode.env.local
2425

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

3438
# node.js
@@ -37,26 +41,27 @@ node_modules/
3741
npm-debug.log
3842
yarn-error.log
3943

40-
# BUCK
41-
buck-out/
42-
\.buckd/
43-
*.keystore
44-
4544
# fastlane
4645
#
4746
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
4847
# screenshots whenever they are needed.
4948
# For more information about the recommended setup visit:
5049
# https://docs.fastlane.tools/best-practices/source-control/
5150

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

5656
# Bundle artifact
5757
*.jsbundle
5858

5959
jest_coverage
6060

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

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"semi": true,
44
"singleQuote": true,
55
"bracketSpacing": true,
6-
"jsxBracketSameLine": false,
6+
"arrowParens": "avoid",
7+
"bracketSameLine": false,
78
"tabWidth": 2,
89
"parser": "flow"
910
}

Gemfile

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

android/app/_BUCK

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

0 commit comments

Comments
 (0)