Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update dependencies #203

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test
  • Loading branch information
Kudo committed Jun 30, 2024
commit 70f3de13801a54a9cd62a1466b40485de470e091
2 changes: 1 addition & 1 deletion .github/workflows/expo-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
bunx create-expo-app -t blank@@sdk-51 TestApp
cd TestApp
bun add v8-android-jit
bun add file:${ github.workspace }}/react-native-v8
bun add file:${{ github.workspace }}
jq '.expo.android.package = "com.testapp" | .expo.plugins += ["react-native-v8"] | .expo.jsEngine = "jsc"' app.json > app.json.tmp && mv -f app.json.tmp app.json
echo 'if (global._v8runtime) { console.log(`=== V8 version[${global._v8runtime().version}] ===`); }' >> App.js
working-directory: ${{ runner.temp }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/expo-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
bunx create-expo-app -t blank@@sdk-51 TestApp
cd TestApp
bun add v8-ios
bun add file:${ github.workspace }}/react-native-v8
bun add file:${{ github.workspace }}
jq '.expo.ios.bundleIdentifier = "com.testapp" | .expo.plugins += [["react-native-v8", {"ios":true}]] | .expo.jsEngine = "jsc"' app.json > app.json.tmp && mv -f app.json.tmp app.json
echo 'if (global._v8runtime) { console.log(`=== V8 version[${global._v8runtime().version}] ===`); }' >> App.js
working-directory: ${{ runner.temp }}
Expand Down
Loading