Skip to content

Commit c95350b

Browse files
authored
OPS: Update RN (BlueWallet#5305)
1 parent 69f9197 commit c95350b

Some content is hidden

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

44 files changed

+12451
-16121
lines changed

Diff for: .babelrc

-3
This file was deleted.

Diff for: .buckconfig

-9
This file was deleted.

Diff for: .circleci/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454

5555
working_directory: ~/repo
5656

57+
resource_class: large
58+
5759
steps:
5860
- checkout
5961

Diff for: .detoxrc.json

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
2-
"testRunner": "jest",
3-
"runnerConfig": "tests/e2e/config.json",
4-
"skipLegacyWorkersInjection": true,
2+
"testRunner": {
3+
"$0": "jest",
4+
"args": {
5+
"config": "tests/e2e/jest.config.js",
6+
"_": ["e2e"]
7+
}
8+
},
59
"apps": {
610
"ios": {
711
"type": "ios.app",

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
avd-name: Pixel_API_29_AOSP
9595
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -camera-back none -camera-front none -partition-size 2047
9696
arch: x86_64
97-
script: npm run e2e:release-test || npm run e2e:release-test || npm run e2e:release-test
97+
script: npm run e2e:release-test || npm run e2e:release-test || npm run e2e:release-test || npm run e2e:release-test
9898
env:
9999
TRAVIS: 1
100100
HD_MNEMONIC: ${{ secrets.HD_MNEMONIC }}

Diff for: .gitignore

+11-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23+
ios/.xcode.env.local
2324
*.hprof
25+
.cxx/
26+
*.keystore
27+
!debug.keystore
2428

2529
# Android/IntelliJ
2630
#
@@ -52,6 +56,7 @@ buck-out/
5256
*/fastlane/report.xml
5357
*/fastlane/Preview.html
5458
*/fastlane/screenshots
59+
**/fastlane/test_output
5560

5661
# Bundle artifact
5762
*.jsbundle
@@ -61,8 +66,12 @@ release-notes.json
6166
release-notes.txt
6267
current-branch.json
6368

64-
ios/Pods/
65-
69+
# Ruby / CocoaPods
70+
/ios/Pods/
71+
/vendor/bundle/
72+
73+
# Temporary files created by Metro to check the health of the file watcher
74+
.metro-health-check*
6675
artifacts/
6776

6877
# Editors

Diff for: .ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
2.7.6

Diff for: .xcode-env

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This `.xcode.env` file is versioned and is used to source the
2+
environment
3+
# used when running script phases inside Xcode.
4+
# To customize your local environment, you can create an
5+
`.xcode.env.local`
6+
# file that is not versioned.
7+
8+
# NODE_BINARY variable contains the PATH to the node executable.
9+
#
10+
# Customize the NODE_BINARY variable here.
11+
# For example, to use nvm with brew, add the following line
12+
# . "$(brew --prefix nvm)/nvm.sh" --no-use
13+
export NODE_BINARY=$(command -v node)

Diff for: Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.4'
4+
ruby File.read(File.join(__dir__, '.ruby-version')).strip
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

0 commit comments

Comments
 (0)