From b1938b5200db4e856235b85606ff81237662999d Mon Sep 17 00:00:00 2001 From: Marcus Molchany Date: Wed, 9 Mar 2022 18:36:48 -0500 Subject: [PATCH] Update configuration.mdx change `"dependsOn"` syntax to use array --- docs/pages/docs/reference/configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/pages/docs/reference/configuration.mdx b/docs/pages/docs/reference/configuration.mdx index eb6ea91705da4..007d0e698c67f 100644 --- a/docs/pages/docs/reference/configuration.mdx +++ b/docs/pages/docs/reference/configuration.mdx @@ -113,10 +113,10 @@ Prefixing an item in `dependsOn` with a `$` tells `turbo` that this pipeline tas "$schema": "https://turborepo.org/schema.json", "pipeline": { "build": { - "dependsOn": { + "dependsOn": [ "^build", "$SOMETHING_ELSE" // value will impact the hashes of all build tasks - }, + ], "outputs": ["dist/**", ".next/**"] }, "web#build": {