Skip to content

Commit 5497b45

Browse files
msluszniakclaude
andcommitted
fix: resolve yarn peer dependency warnings
- Add @expo/log-box@55.0.7 to apps using expo-router and root workspace - Add @babel/eslint-parser@^7.12.0 to root (required by eslint-plugin-ft-flow) - Suppress expected YN0002 warnings for root monorepo workspace via logFilters Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 90731d2 commit 5497b45

6 files changed

Lines changed: 16 additions & 1 deletion

File tree

.yarnrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ compressionLevel: mixed
22

33
enableGlobalCache: false
44

5+
logFilters:
6+
- code: YN0002
7+
pattern: "react-native-executorch-monorepo@* doesn't provide *"
8+
level: discard
9+
510
nodeLinker: node-modules
611

712
yarnPath: .yarn/releases/yarn-4.1.1.cjs

apps/computer-vision/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"lint": "eslint . --ext .ts,.tsx --fix"
1212
},
1313
"dependencies": {
14+
"@expo/log-box": "55.0.7",
1415
"@react-native-executorch/expo-resource-fetcher": "workspace:*",
1516
"@react-native/metro-config": "^0.84.1",
1617
"@react-navigation/drawer": "^7.8.1",

apps/llm/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"lint": "eslint . --ext .ts,.tsx --fix"
1212
},
1313
"dependencies": {
14+
"@expo/log-box": "55.0.7",
1415
"@react-native-executorch/expo-resource-fetcher": "workspace:*",
1516
"@react-native/metro-config": "^0.84.1",
1617
"@react-navigation/drawer": "^7.8.1",

apps/text-embeddings/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"lint": "eslint . --ext .ts,.tsx --fix"
1212
},
1313
"dependencies": {
14+
"@expo/log-box": "55.0.7",
1415
"@react-native-executorch/expo-resource-fetcher": "workspace:*",
1516
"@react-navigation/drawer": "^7.8.1",
1617
"@react-navigation/native": "^7.1.28",

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@
1515
},
1616
"private": true,
1717
"devDependencies": {
18+
"@babel/eslint-parser": "^7.12.0",
1819
"@cspell/eslint-plugin": "^8.19.0",
1920
"@evilmartians/lefthook": "^2.1.1",
21+
"@expo/log-box": "55.0.7",
2022
"@react-native/eslint-config": "^0.79.0",
2123
"cspell": "^8.19.0",
2224
"eslint": "^8.57.0",

yarn.lock

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ __metadata:
6262
languageName: node
6363
linkType: hard
6464

65-
"@babel/eslint-parser@npm:^7.25.1":
65+
"@babel/eslint-parser@npm:^7.12.0, @babel/eslint-parser@npm:^7.25.1":
6666
version: 7.28.6
6767
resolution: "@babel/eslint-parser@npm:7.28.6"
6868
dependencies:
@@ -6721,6 +6721,7 @@ __metadata:
67216721
resolution: "computer-vision@workspace:apps/computer-vision"
67226722
dependencies:
67236723
"@babel/core": "npm:^7.29.0"
6724+
"@expo/log-box": "npm:55.0.7"
67246725
"@react-native-executorch/expo-resource-fetcher": "workspace:*"
67256726
"@react-native/metro-config": "npm:^0.84.1"
67266727
"@react-navigation/drawer": "npm:^7.8.1"
@@ -10817,6 +10818,7 @@ __metadata:
1081710818
resolution: "llm@workspace:apps/llm"
1081810819
dependencies:
1081910820
"@babel/core": "npm:^7.29.0"
10821+
"@expo/log-box": "npm:55.0.7"
1082010822
"@react-native-executorch/expo-resource-fetcher": "workspace:*"
1082110823
"@react-native/metro-config": "npm:^0.84.1"
1082210824
"@react-navigation/drawer": "npm:^7.8.1"
@@ -13567,8 +13569,10 @@ __metadata:
1356713569
version: 0.0.0-use.local
1356813570
resolution: "react-native-executorch-monorepo@workspace:."
1356913571
dependencies:
13572+
"@babel/eslint-parser": "npm:^7.12.0"
1357013573
"@cspell/eslint-plugin": "npm:^8.19.0"
1357113574
"@evilmartians/lefthook": "npm:^2.1.1"
13575+
"@expo/log-box": "npm:55.0.7"
1357213576
"@react-native/eslint-config": "npm:^0.79.0"
1357313577
cspell: "npm:^8.19.0"
1357413578
eslint: "npm:^8.57.0"
@@ -15081,6 +15085,7 @@ __metadata:
1508115085
resolution: "text-embeddings@workspace:apps/text-embeddings"
1508215086
dependencies:
1508315087
"@babel/core": "npm:^7.29.0"
15088+
"@expo/log-box": "npm:55.0.7"
1508415089
"@react-native-executorch/expo-resource-fetcher": "workspace:*"
1508515090
"@react-navigation/drawer": "npm:^7.8.1"
1508615091
"@react-navigation/native": "npm:^7.1.28"

0 commit comments

Comments
 (0)