Skip to content

Commit 173e6eb

Browse files
msluszniakclaude
andcommitted
fix: revert bare-resource-fetcher typecheck script to avoid CI race condition
The typecheck script was changed to run `react-native-executorch prepare` before typechecking, but this causes a race condition in CI: the parallel `yarn typecheck` step triggers bob build (which cleans lib/typescript) while expo-resource-fetcher is concurrently typechecking against it, resulting in TS2307 "Cannot find module 'react-native-executorch'" errors. Revert to simple `tsc --noEmit` matching the main branch; CI already runs `--topological-dev run prepare` before typecheck. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0f784ad commit 173e6eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/bare-resource-fetcher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"scripts": {
2323
"prepare": "tsc",
24-
"typecheck": "yarn workspace react-native-executorch run prepare && tsc --noEmit",
24+
"typecheck": "tsc --noEmit",
2525
"lint": "eslint \"**/*.{js,ts,tsx}\"",
2626
"clean": "del-cli lib"
2727
},

0 commit comments

Comments
 (0)