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:
Ajax Davis 2025-11-28 04:09:07 +10:00
parent d46028412b
commit e92f652679

View file

@ -14,7 +14,7 @@
"dependsOn": ["^build"]
},
"type-check": {
"dependsOn": ["^build"],
"dependsOn": ["build", "^build"],
"outputs": []
},
"test": {