fix(ci): ensure type-check runs after build to generate Prisma client
- Add "build" to type-check dependsOn in turbo.json - Ensures packages run their own build before type-checking - Fixes @tpmjs/db type-check failing due to missing Prisma client - Maintains existing "^build" dependency on workspace dependencies This ensures Prisma client generation (via db package build script) completes before TypeScript type-checking runs, preventing CI failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
d46028412b
commit
e92f652679
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
|||
"dependsOn": ["^build"]
|
||||
},
|
||||
"type-check": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": ["build", "^build"],
|
||||
"outputs": []
|
||||
},
|
||||
"test": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue