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": {