* Fix loglevel parsing

* Bump dependencies

* Change --filter to --target

* Update documentation

* Import log handler as "loghandler"

* Change command color to purple

* Change flag name to target

* Update formatting
This commit is contained in:
2021-07-30 22:51:20 +02:00
committed by GitHub
parent a8399397e8
commit 4a0574554a
8 changed files with 55 additions and 28 deletions

View File

@@ -28,3 +28,8 @@ func Blue(s string) string {
func White(s string) string {
return gchalk.White(s)
}
// Purple returns a purple string
func Purple(s string) string {
return gchalk.RGB(196, 16, 224)(s)
}