Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0f68490

Browse files
authoredSep 12, 2024··
upgrade rn fixes (#849)
* pod install works * Update app_test.yml * clean ups
1 parent 431b844 commit 0f68490

File tree

9 files changed

+14
-9
lines changed

9 files changed

+14
-9
lines changed
 

‎.github/workflows/app_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- name: Use Node.js
2020
uses: actions/setup-node@v1
2121
with:
22-
node-version: 14
22+
node-version: 20
2323
always-auth: true
2424
registry-url: https://registry.npmjs.org
2525

2626
- name: Install NPM dependencies
27-
run: npm install
27+
run: npm install --legacy-peer-deps
2828

2929
- run: npm run linter
3030

‎examples/client/Locomotion/.node-version

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.

‎examples/client/Locomotion/.watchman-cookie-Hilats-MacBook-Pro.local-10404-6574

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export NODE_BINARY=$(command -v node)

‎examples/client/Locomotion/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎examples/client/Locomotion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Locomotion",
2+
"name": "locomotion",
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {

‎examples/client/Locomotion/patches/react-native+0.71.0.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ index 247bc11..c9dffc4 100644
1414
# set tarball as hermes engine
1515
source[:http] = "file://#{destination_path}"
1616
-elsif File.exists?(hermestag_file) && isInCI
17-
+elsif File.exists(hermestag_file) && isInCI
17+
+elsif File.exist?(hermestag_file) && isInCI
1818
Pod::UI.puts '[Hermes] Detected that you are on a React Native release branch, building Hermes from source but fetched from tag...'.yellow if Object.const_defined?("Pod::UI")
1919
hermestag = File.read(hermestag_file).strip
2020
source[:git] = git

‎examples/client/Locomotion/yarn.lock

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6318,14 +6318,19 @@ fs.realpath@^1.0.0:
63186318
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
63196319
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
63206320

6321-
fsevents@^1.2.7, fsevents@^2.3.2:
6321+
fsevents@^1.2.7:
63226322
version "1.2.13"
63236323
resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"
63246324
integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
63256325
dependencies:
63266326
bindings "^1.5.0"
63276327
nan "^2.12.1"
63286328

6329+
fsevents@^2.3.2:
6330+
version "2.3.3"
6331+
resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
6332+
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
6333+
63296334
function-bind@^1.1.2:
63306335
version "1.1.2"
63316336
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"

0 commit comments

Comments
 (0)
Please sign in to comment.