From fc3b9bfa1379301f48cff26237a280dc8d0b8141 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Wed, 5 Feb 2025 04:32:24 -0700 Subject: [PATCH] docs: fix dangling sentence --- 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