How to depend on all packages completing a task before a root task can run? #10733
-
SummaryKnip now requires builds to run before it can run. Knip runs as a root task, but builds are per-package. How can I get Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Answered by
anthonyshew
Sep 14, 2025
Replies: 1 comment 1 reply
-
This would be expressed as: {
"tasks": {
"//#knip": {
"dependsOn": ["//#build"]
},
"//#build": {
// Your configuration
}
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
anthonyshew
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This would be expressed as: