Skip to content

Commit 40d7715

Browse files
committed
chore: changelog for #1572
1 parent 856ba3b commit 40d7715

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- Added `TASK_EXE` special variable (#1616, #1624 by @pd93 and @andreynering).
66
- Some YAML parsing errors will now show in a more user friendly way (#1619 by
77
@pd93).
8+
- Prefixed outputs will now be colorized by default (#1572 by
9+
@AlexanderArvidsson)
810
- [References](https://taskfile.dev/usage/#referencing-other-variables) are now
911
generally available (no experiments required) (#1654 by @pd93).
1012
- Templating functions can now be used in references (#1645, #1654 by @pd93).

website/docs/reference/environment.mdx

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,21 @@ page lists all the environment variables that Task supports.
1515

1616
## Custom Colors
1717

18-
| ENV | Default | Description |
19-
| -------------------- | ------- | ----------------------- |
20-
| `TASK_COLOR_RESET` | `0` | Color used for white. |
21-
| `TASK_COLOR_RED` | `31` | Color used for red. |
22-
| `TASK_COLOR_GREEN` | `32` | Color used for green. |
23-
| `TASK_COLOR_YELLOW` | `33` | Color used for yellow. |
24-
| `TASK_COLOR_BLUE` | `34` | Color used for blue. |
25-
| `TASK_COLOR_MAGENTA` | `35` | Color used for magenta. |
26-
| `TASK_COLOR_CYAN` | `36` | Color used for cyan. |
18+
| ENV | Default | Description |
19+
| --------------------------- | ------- | ----------------------- |
20+
| `TASK_COLOR_RESET` | `0` | Color used for white. |
21+
| `TASK_COLOR_RED` | `31` | Color used for red. |
22+
| `TASK_COLOR_GREEN` | `32` | Color used for green. |
23+
| `TASK_COLOR_YELLOW` | `33` | Color used for yellow. |
24+
| `TASK_COLOR_BLUE` | `34` | Color used for blue. |
25+
| `TASK_COLOR_MAGENTA` | `35` | Color used for magenta. |
26+
| `TASK_COLOR_CYAN` | `36` | Color used for cyan. |
27+
| `TASK_COLOR_BRIGHT_RED` | `91` | Color used for red. |
28+
| `TASK_COLOR_BRIGHT_GREEN` | `92` | Color used for green. |
29+
| `TASK_COLOR_BRIGHT_YELLOW` | `93` | Color used for yellow. |
30+
| `TASK_COLOR_BRIGHT_BLUE` | `94` | Color used for blue. |
31+
| `TASK_COLOR_BRIGHT_MAGENTA` | `95` | Color used for magenta. |
32+
| `TASK_COLOR_BRIGHT_CYAN` | `96` | Color used for cyan. |
2733

2834
All color variables are [ANSI color codes][ansi]. You can specify multiple codes
2935
separated by a semicolon. For example: `31;1` will make the text bold and red.

0 commit comments

Comments
 (0)