mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 17:41:09 +02:00
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:
parent
2effac4158
commit
307f1ae22e
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
|||
"outputs": []
|
||||
},
|
||||
"type-check": {
|
||||
"dependsOn": ["^type-check"],
|
||||
"dependsOn": ["^type-check", "^build"],
|
||||
"outputs": []
|
||||
},
|
||||
"test": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue