From 807d77da925884ceb4ad457367edb2266e58eec4 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Sat, 16 Nov 2024 11:26:02 -0700 Subject: [PATCH] docs: Clarify output globs relativeness. --- .../crafting-your-repository/configuring-tasks.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/repo-docs/crafting-your-repository/configuring-tasks.mdx b/docs/repo-docs/crafting-your-repository/configuring-tasks.mdx index 341915773f50a..e265836f4b868 100644 --- a/docs/repo-docs/crafting-your-repository/configuring-tasks.mdx +++ b/docs/repo-docs/crafting-your-repository/configuring-tasks.mdx @@ -213,7 +213,7 @@ Below are a few examples of outputs for common tools: -For more on building globbing patterns for the `outputs` key, see [the globbing specification](/repo/docs/reference/globs). +Globs are relative to the package, so `dist/**` will handle the `dist` that is outputted for each package, respectively. For more on building globbing patterns for the `outputs` key, see [the globbing specification](/repo/docs/reference/globs). ### Specifying `inputs` @@ -367,8 +367,8 @@ To meet both requirements (correctness and parallelism), you can introduce [Tran }, "check-types": { "dependsOn": ["transit"] - }, - }, + } + } } ```