From cdafc67befb5599b01d5cd02acb3aa1b620ca6c3 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Mon, 8 Jul 2024 23:18:21 +0200 Subject: [PATCH] docs: add CLI_SILENT and CLI_VERBOSE in the docs (#1717) --- website/docs/reference/templating.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/docs/reference/templating.mdx b/website/docs/reference/templating.mdx index b85870aa..2aee4447 100644 --- a/website/docs/reference/templating.mdx +++ b/website/docs/reference/templating.mdx @@ -101,9 +101,11 @@ engine. If you define a variable with the same name as a special variable, the special variable will be overridden. | Var | Description | -| ------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------| | `CLI_ARGS` | Contain all extra arguments passed after `--` when calling Task through the CLI. | | `CLI_FORCE` | A boolean containing whether the `--force` or `--force-all` flags were set. | +| `CLI_SILENT` | A boolean containing whether the `--silent` flag was set. | +| `CLI_VERBOSE` | A boolean containing whether the `--verbose` flag was set. | | `TASK` | The name of the current task. | | `TASK_EXE` | The Task executable name or path. | | `ROOT_TASKFILE` | The absolute path of the root Taskfile. |