Skip to content
This repository was archived by the owner on Feb 9, 2026. It is now read-only.

Commit 2bdaf27

Browse files
authored
Merge pull request #192 from synonymdev/rn72
fix: RN 0.72.4
2 parents 333b7ac + 73c38c1 commit 2bdaf27

49 files changed

Lines changed: 3002 additions & 3197 deletions

Some content is hidden

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

.github/workflows/e2e-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 16
25+
node-version: 18
2626
cache: 'yarn' # cache packages, but not node_modules
2727
cache-dependency-path: 'example/yarn.lock'
2828

.github/workflows/e2e-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 16
25+
node-version: 18
2626
cache: 'yarn' # cache packages, but not node_modules
2727
cache-dependency-path: 'example/yarn.lock'
2828

.github/workflows/example-lint-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- name: Check out Git repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v3
2323
with:
24-
node-version: 14
24+
node-version: 18
2525

2626
- name: Cache node modules
2727
uses: actions/cache@v3

.github/workflows/lib-lint-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
steps:
1818
- name: Check out Git repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v3
2323
with:
24-
node-version: 14
24+
node-version: 18
2525

2626
- name: Cache node modules
2727
uses: actions/cache@v3

.github/workflows/mocha-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Node
5151
uses: actions/setup-node@v3
5252
with:
53-
node-version: 16
53+
node-version: 18
5454
cache: 'yarn' # cache packages, but not node_modules
5555
cache-dependency-path: 'example/yarn.lock'
5656

.github/workflows/mocha-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Node
5151
uses: actions/setup-node@v3
5252
with:
53-
node-version: 16
53+
node-version: 18
5454
cache: 'yarn' # cache packages, but not node_modules
5555
cache-dependency-path: 'example/yarn.lock'
5656

example/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
root: true,
3-
extends: '@react-native-community',
3+
extends: '@react-native',
44
parser: '@typescript-eslint/parser',
55
env: {
66
jest: true,

example/.flowconfig

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

example/.gitignore

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,15 @@ local.properties
3131
*.iml
3232
*.hprof
3333
.cxx/
34+
*.keystore
35+
!debug.keystore
3436

3537
# node.js
3638
#
3739
node_modules/
3840
npm-debug.log
3941
yarn-error.log
4042

41-
# BUCK
42-
buck-out/
43-
\.buckd/
44-
*.keystore
45-
!debug.keystore
46-
4743
# fastlane
4844
#
4945
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
@@ -63,4 +59,10 @@ buck-out/
6359
/ios/Pods/
6460
/vendor/bundle/
6561

62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage
67+
6668
/artifacts/

example/.node-version

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

0 commit comments

Comments
 (0)