Skip to content

Commit

Permalink
Much better.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Jan 26, 2024
1 parent f5a7919 commit b3248f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/repo/docs/core-concepts/caching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ You won't want to commit this file to source control since it's dependent on env

Now, make sure that `turbo` is aware of the file by adding it to task inputs. You can do this two ways:

- **For specific tasks**: Include the file in [the `inputs` array](/repo/docs/reference/configuration#inputs) of the task(s)
- **For specific tasks**: Include the file in [the `inputs` array](/repo/docs/reference/configuration#inputs) of the task(s):

```json
{
"$schema": "https://turbo.build/schema.json",
"pipelines": {
"build-for-platforms": {
"dependsOn": ["^build"],
"inputs": ["**/**", "turbo-cache-key.json"]
"inputs": ["turbo-cache-key.json", ...]
}
}
}
Expand Down

0 comments on commit b3248f1

Please sign in to comment.