1 / 5
Projects that depend, directly or transitively, on the files you changed are the ___ projects.
-
-
-
-
Affected projects are the ones touched by your change or downstream of it; only these need rebuilding and retesting.
2 / 5
Tools compute affected projects by diffing your branch against a ___ commit.
-
-
-
-
The base (e.g. main) commit defines the comparison point; the diff against it reveals which files and thus which projects changed.
3 / 5
Rebuilding only what changed instead of the whole repo is an ___ build.
-
-
-
-
Incremental builds reuse prior results and recompute only the affected work, dramatically cutting CI time in large monorepos.
4 / 5
Running `test --affected` executes tests only for projects that ___.
-
-
-
-
Affected-only testing runs the suites for impacted projects, giving fast feedback without re-running the entire test matrix.
5 / 5
Removing unaffected tasks before execution so the runner does less work is task graph ___.
-
-
-
-
Pruning trims the task graph to just the affected tasks and their prerequisites, so the build runs the minimum necessary work.