1
0
mirror of https://github.com/go-task/task.git synced 2025-06-23 00:38:19 +02:00

feat: colorize tasks in prefixed output (#1572)

* feat: Colorize tasks in prefixed output

* chore: comment and style changes

* fix code tag has spaces in api reference

* fix: migrate to use logger for colors

* fix: Add bright colors to the color sequence

* fix: make colorized prefix logger standard
This commit is contained in:
Alexander Arvidsson
2024-06-03 11:37:24 +02:00
committed by GitHub
parent 0810ef01b0
commit 856ba3b8c2
5 changed files with 114 additions and 11 deletions

View File

@ -155,7 +155,7 @@ func (e *Executor) setupOutput() error {
}
var err error
e.Output, err = output.BuildFor(&e.OutputStyle)
e.Output, err = output.BuildFor(&e.OutputStyle, e.Logger)
return err
}