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

Improve documentation of accepted options for outputMode config #1761

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
Aug 24, 2022
Merged
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
11 changes: 9 additions & 2 deletions docs/pages/docs/reference/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,16 @@ Specifying `[]` will cause the task to be rerun when any version-controlled file

### `outputMode`

`type: string`
`type: "full" | "hash-only" | "new-only" | "none"`

Defaults to `full`. The style of output for the task. Use "full" to display the entire output of the task. Use "hash-only" to show only the computed task hashes. Use "new-only" to show the full output of cache misses and the computed hashes for cache hits. Use "none" to hide task output.
Defaults to `full`. The style of output for the task.

| option | description |
| --------- | ---------------------------------------- |
| full | This is the default. Displays all output |
| hash-only | Show only the hashes of the tasks |
| new-only | Only show output from cache misses |
| none | Hides all task output |

**Example**

Expand Down