You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Defaults to `true`. Include dependent workspace consumers in the execution.
69
-
70
-
```sh
71
-
turbo run build --deps
72
-
turbo run build --no-deps
73
-
```
74
-
75
-
**Example**
76
-
77
-
Let's say you have workspaces A, B, C, and D where A depends on B and C depends on D. You run `turbo run build` for the first time and everything is built and cached. Then, you change a line of code in B. With the `--deps` flag on, running `turbo run build` will execute `build` in B and then A, but not in C and D because they are not impacted by the change. If you were to run `turbo run build --no-deps` instead, turbo will only run `build` in B.
78
-
79
60
### `--dry / --dry-run`
80
61
81
62
Instead of executing tasks, display details about the affected workspaces and tasks that would be run.
@@ -245,18 +226,6 @@ Just a quick overview.
245
226
-`{}` allows for a comma-separated list of "or" expressions
246
227
-`!` at the beginning of a pattern will negate the match
247
228
248
-
### `--include-dependencies`
249
-
250
-
<Callouttype="error">
251
-
`--include-dependencies` is deprecated in `1.2.x`. Please use
Default `false`. When `true`, `turbo` will add any workspaces that the workspaces in the current execution _depend_ on (i.e. those declared in `dependencies` or `devDependencies`).
257
-
258
-
This is useful when using `--filter` in CI as it guarantees that every dependency needed for the execution is actually executed.
259
-
260
229
### `--no-cache`
261
230
262
231
Default `false`. Do not cache results of the task. This is useful for watch commands like `next dev` or `react-scripts start`.
@@ -340,42 +309,6 @@ turbo run build --remote-only
340
309
341
310
The same behavior can also be set via the `TURBO_REMOTE_ONLY=true` environment variable.
0 commit comments