-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
Describe the feature you'd like to request
I use Turbo to run dev scripts:
turbo run dev --parallel --no-cache --scope=package-a --include-dependenciesThe problem is package A might depend on the output files of package B:
- with
--parallelit ignores all that, so A's dev script will fail for the first time - without
--parallelonly thedevscript of A's dependencies get executed.
Relevant turbo.json:
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build"]
},
"dev": {
"dependsOn": ["^dev"],
"cache": false
},
"lint": {}
}
}Describe the solution you'd like
Maybe the output option should be taken into account when running the script.
Describe alternatives you've considered
Writing some custom script to execute the dev script for now
debuggerpk
Metadata
Metadata
Assignees
Labels
No labels