fix: add ^build dependency to type-check task

Packages that export types from dist/ (like @mana-core/nestjs-integration)
need to be built before dependent packages can type-check against them.
The ^type-check dependency alone doesn't produce the dist/ output files.
This commit is contained in:
Wuesteon 2025-12-10 21:34:07 +01:00
parent 2effac4158
commit 307f1ae22e

View file

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