Skip to content

Commit a96ea49

Browse files
authored
chore: upgrate dependencies (#204)
# Why update outdate dependencies # How `yarn upgrade-interactive --latest`
1 parent 38bd186 commit a96ea49

File tree

3 files changed

+3131
-1436
lines changed

3 files changed

+3131
-1436
lines changed

.github/workflows/expo-ios.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,22 @@ jobs:
5757
- name: Run TestApp
5858
working-directory: ../TestApp/ios
5959
run: |
60+
set -x
6061
SIMUDID=$(xcrun simctl list devices available -j | jq -r '.devices."com.apple.CoreSimulator.SimRuntime.iOS-17-5"[] | select(.name=="iPhone 15 Pro") | .udid')
6162
echo "Using simulator udid[${SIMUDID}]"
6263
xcrun simctl boot ${SIMUDID}
6364
xcrun simctl install booted ./build/Build/Products/Release-iphonesimulator/TestApp.app
6465
xcrun simctl spawn booted log stream --predicate 'process == "TestApp"' --level=debug > sim.log &
6566
LOG_PID=$!
6667
xcrun simctl launch booted com.testapp
67-
sleep 5
68+
sleep 20
6869
kill -SIGINT $LOG_PID
70+
set +e
6971
grep -E "=== V8 version\[.+\] ===" sim.log > /dev/null
72+
BUILD_STATUS=$?
73+
set -e
74+
echo "BUILD_STATUS=$BUILD_STATUS"
75+
exit $BUILD_STATUS
7076
7177
- name: Collect failure files
7278
if: failure()

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
"devDependencies": {
4343
"@types/semver": "^7.5.8",
4444
"clang-format": "^1.8.0",
45-
"expo": "^48.0.0",
46-
"expo-module-scripts": "^3.0.7"
45+
"expo": "^51.0.17",
46+
"expo-module-scripts": "^3.5.2"
4747
},
4848
"peerDependencies": {
4949
"expo": "*"

0 commit comments

Comments
 (0)