From 450759d69ed9cb3d6e5a92698f21d5ddfa9703a0 Mon Sep 17 00:00:00 2001 From: Jan Paulus Date: Tue, 21 Feb 2023 08:38:38 +0100 Subject: [PATCH] Add missing comma to dependsOn code example (#3884) --- docs/pages/repo/docs/reference/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/repo/docs/reference/configuration.mdx b/docs/pages/repo/docs/reference/configuration.mdx index 2df49b25999b4..2e670fdb6580c 100644 --- a/docs/pages/repo/docs/reference/configuration.mdx +++ b/docs/pages/repo/docs/reference/configuration.mdx @@ -116,7 +116,7 @@ Items in `dependsOn` without `^` prefix, express the relationships between tasks "build": { // "A workspace's `build` command depends on its dependencies' // or devDependencies' `build` command being completed first" - "outputs": [".next/**", "!.next/cache/**", "dist/**"] + "outputs": [".next/**", "!.next/cache/**", "dist/**"], "dependsOn": ["^build"] }, "test": {