这是indexloc提供的服务,不要输入任何密码
Skip to content

docs: add community-built Run Summaries web viewer #9679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/repo-docs/crafting-your-repository/caching.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,13 @@ Turborepo has a [`--summarize` flag](/repo/docs/reference/run#--summarize) that
- Debugging inputs: There are many inputs to a task in Turborepo. If a task is missing cache when you expect it to hit, you can use a Run Summary to check which inputs are different that you weren't expecting.
- Debugging outputs: If cache hits aren't restoring the files you're expecting, a Run Summary can help you understand what outputs are being restored from cache.

<Callout type="info" title="Summaries viewer">
While there is not a Turborepo-native Run Summaries UI viewer, we encourage
you to use the community-built
[https://turbo.nullvoxpopuli.com](https://turbo.nullvoxpopuli.com) if you would
like to view your Run Summaries as a web view.
</Callout>

### Turning off caching

Sometimes, you may not want to write the output of tasks to the cache. This can be set permanently for a task using [`"cache": false`](/repo/docs/reference/configuration#cache) or for a whole run using [ the `--no-cache` flag](/repo/docs/reference/run#--no-cache).
Expand Down
7 changes: 7 additions & 0 deletions docs/repo-docs/reference/run.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,13 @@ This flag can be helpful for debugging to determine things like:
- What inputs changed between two task runs to produce a cache miss
- How task timings changed over time

<Callout type="info" title="Summaries viewer">
While there is not a Turborepo-native Run Summaries UI viewer, we encourage
you to use the community-built
[https://turbo.nullvoxpopuli.com](https://turbo.nullvoxpopuli.com) if you would
like to view your Run Summaries as a web view.
</Callout>

### `--token`

A bearer token for Remote Caching. Useful for running in non-interactive shells in combination with the `--team` flag.
Expand Down
Loading