From b965057834561af10b4b619bd1c729db5194c589 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Wed, 5 Feb 2025 19:59:37 -0700 Subject: [PATCH] docs: fix dangling sentence (#9902) --- docs/repo-docs/guides/single-package-workspaces.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/repo-docs/guides/single-package-workspaces.mdx b/docs/repo-docs/guides/single-package-workspaces.mdx index 999b42180610d..b67543c2a9827 100644 --- a/docs/repo-docs/guides/single-package-workspaces.mdx +++ b/docs/repo-docs/guides/single-package-workspaces.mdx @@ -103,7 +103,7 @@ Then, create tasks in `turbo.json` to run these scripts in order: } ``` -The `dependsOn` arrays in the tasks above create a sequential order for the tasks. When you run `turbo dev` (either as a `package.json` script or in your terminal), +The `dependsOn` arrays in the tasks above create a sequential order for the tasks. When you run `turbo dev`, the scripts for `db:up`, then `db:push`, then `db:seed` will be ran first. ## Parallelizing tasks