What version of Turborepo are you using?
1.0.23
What package manager are you using / does the bug impact?
Yarn v1
What operating system are you using?
Linux
Describe the Bug
I package I have does tsc --build --watch, and turbo hangs as a result (because watch never ends)
Expected Behavior
task execution for other projects resumes
To Reproduce
- have two projects, app and library
- define:
"turbo": {
"pipeline": {
"dev": {
"dependsOn": [
"^dev"
]
},
- have library/package.json#scripts.dev be
tsc --build --watch
- observe app's
dev script is never ran