From 625e09e94e97171c03b434b6448b57aea48f9e80 Mon Sep 17 00:00:00 2001 From: Eric Clemmons Date: Mon, 27 Dec 2021 17:47:48 -0600 Subject: [PATCH] Prefer `--include-dependencies` Fixes the warning: > [WARNING] The --includeDependencies flag has renamed to --include-dependencies for consistency. Please use `--include-dependencies` instead --- docs/pages/docs/features/scopes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/docs/features/scopes.mdx b/docs/pages/docs/features/scopes.mdx index 081043cea837e..5c79cb78927a0 100644 --- a/docs/pages/docs/features/scopes.mdx +++ b/docs/pages/docs/features/scopes.mdx @@ -32,7 +32,7 @@ turbo run build --scope=*build-tools* Sometimes we want to run the tasks needed to satisfy the `build` script of all the packages that has the `build-tools` string in their names. Think of this as running tasks up and including the package matched in the scope. Add a `--no-deps` flag to run up to a package task. ```sh -turbo run build --scope=*build-tools* --no-deps --includeDependencies +turbo run build --scope=*build-tools* --no-deps --include-dependencies ```