From a19632c9c709f2535a6f7c556fc90f061d3c0225 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Wed, 2 Jul 2025 18:44:24 -0600 Subject: [PATCH 1/3] docs: clarify default inputs behavior --- docs/site/content/docs/reference/configuration.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/content/docs/reference/configuration.mdx b/docs/site/content/docs/reference/configuration.mdx index d332d0cd4dca0..c69dac58be890 100644 --- a/docs/site/content/docs/reference/configuration.mdx +++ b/docs/site/content/docs/reference/configuration.mdx @@ -419,7 +419,7 @@ Defines if task outputs should be cached. Setting `cache` to false is useful for Default: `[]`, all files in the package that are checked into source control -A list of file glob patterns relative to the package's `package.json` to consider when determining if a package has changed. `turbo.json` is **always** considered an input. +A list of file glob patterns relative to the package's `package.json` to consider when determining if a package has changed. `turbo.json` and `package.json` are **always** considered inputs, even if you try to explicitly ignore them. Visit the [file glob specification](/docs/reference/globs) for more information on globbing syntax. From 59383779741de48fbe7f51bb8f4f8fadf67335de Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Mon, 7 Jul 2025 10:00:54 -0600 Subject: [PATCH 2/3] Update docs/site/content/docs/reference/configuration.mdx Co-authored-by: Brad Adams --- docs/site/content/docs/reference/configuration.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/site/content/docs/reference/configuration.mdx b/docs/site/content/docs/reference/configuration.mdx index c69dac58be890..023301c305292 100644 --- a/docs/site/content/docs/reference/configuration.mdx +++ b/docs/site/content/docs/reference/configuration.mdx @@ -419,7 +419,10 @@ Defines if task outputs should be cached. Setting `cache` to false is useful for Default: `[]`, all files in the package that are checked into source control -A list of file glob patterns relative to the package's `package.json` to consider when determining if a package has changed. `turbo.json` and `package.json` are **always** considered inputs, even if you try to explicitly ignore them. +A list of file glob patterns relative to the package's `package.json` to consider when determining if a package has changed. The following files are **always** considered inputs, even if you try to explicitly ignore them: + +- `package.json` +- `turbo.json` Visit the [file glob specification](/docs/reference/globs) for more information on globbing syntax. From 1f4591f8ec56d1e337c7fb2121fdaad3c50afeb3 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Mon, 7 Jul 2025 10:01:28 -0600 Subject: [PATCH 3/3] Update docs/site/content/docs/reference/configuration.mdx --- docs/site/content/docs/reference/configuration.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/site/content/docs/reference/configuration.mdx b/docs/site/content/docs/reference/configuration.mdx index 023301c305292..18199ae9c7a5e 100644 --- a/docs/site/content/docs/reference/configuration.mdx +++ b/docs/site/content/docs/reference/configuration.mdx @@ -423,6 +423,7 @@ A list of file glob patterns relative to the package's `package.json` to conside - `package.json` - `turbo.json` +- Package manager lockfiles Visit the [file glob specification](/docs/reference/globs) for more information on globbing syntax.