Skip to content

Commit

Permalink
fix(script): add ios-deploy installation instructions for Bun
Browse files Browse the repository at this point in the history
release-npm
  • Loading branch information
tobua committed Aug 10, 2024
1 parent f7569ef commit fea5e0c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@
}
},
"dependencies": {
"@react-native-community/cli": "^13.6.9",
"@react-native/babel-preset": "^0.74.84",
"@react-native/eslint-config": "^0.74.84",
"@react-native/metro-config": "^0.74.84",
"@react-native/typescript-config": "^0.74.84",
"@react-native-community/cli": "^14.0.0",
"@react-native/babel-preset": "^0.74.87",
"@react-native/eslint-config": "^0.74.87",
"@react-native/metro-config": "^0.74.87",
"@react-native/typescript-config": "^0.74.87",
"arg": "^5.0.2",
"command-exists": "^1.2.9",
"deepmerge": "^4.3.1",
"eslint": "8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-prettier": "^5.2.1",
"fast-glob": "^3.3.2",
"global-cache-dir": "^6.0.0",
"is-ci": "^3.0.1",
"json5": "^2.2.3",
"logua": "^3.0.3",
"pakag": "^3.1.3",
"pakag": "^3.1.4",
"parse-gitignore": "^2.0.0",
"prettier": "^3.3.2",
"prettier": "^3.3.3",
"prompts": "^2.4.2",
"semver": "^7.6.2",
"semver": "^7.6.3",
"semver-sort": "^1.0.0",
"skip-local-postinstall": "^2.0.4"
},
Expand All @@ -56,8 +56,8 @@
"@types/semver": "^7.5.8",
"jest-fixture": "^4.1.0",
"padua": "^4.0.1",
"react-native": "^0.74.2",
"vitest": "^1.6.0"
"react-native": "^0.74.5",
"vitest": "^2.0.5"
},
"peerDependencies": {
"react-native": ">= 0.73"
Expand Down
2 changes: 1 addition & 1 deletion script/prompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export const prompt = async () => {
if (location === RunLocation.device) {
if (!commandExists('ios-deploy')) {
log(
'ios-deploy required to run on device, install with "sudo npm install -g ios-deploy" or "brew install ios-deploy"',
'ios-deploy required to run on device, install with "sudo npm install -g ios-deploy", "bun pm trust ios-deploy && bun install -g ios-deploy" or "brew install ios-deploy"',
'error',
)
}
Expand Down
8 changes: 4 additions & 4 deletions template/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
},
"dependencies": {
"epic-language": "^0.8.0",
"mobx": "^6.12.4",
"mobx": "^6.13.1",
"mobx-react-lite": "^4.0.7",
"react": "^18.3.1",
"react-native": "^0.74.2",
"react-native": "^0.74.5",
"reactigation": "^4.0.3",
"responsive-react-native": "^1.0.5"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.5.1",
"@testing-library/react-native": "^12.5.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-native": "^0.73.0",
Expand All @@ -31,7 +31,7 @@
"jest": "^29.7.0",
"numic": "^2.2.0",
"react-test-renderer": "^18.3.1",
"typescript": "^5.4.5"
"typescript": "^5.5.4"
},
"trustedDependencies": [
"numic"
Expand Down
4 changes: 2 additions & 2 deletions template/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"react": "^18.3.1",
"react-native": "^0.74.2"
"react-native": "^0.74.5"
},
"type": "module",
"devDependencies": {
Expand All @@ -26,7 +26,7 @@
"jest": "^29.7.0",
"numic": "^2.2.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.4.5"
"typescript": "^5.5.4"
},
"trustedDependencies": [
"numic"
Expand Down

0 comments on commit fea5e0c

Please sign in to comment.