kilo/vendor/github.com/mattn/go-colorable
leonnicolas 36643b77b4
Use apiextension v1
- upgrade from apiextension v1beta1 to v1
 - generate yaml manifest for crd intead of applying it at runtime
  - users will have to apply the manifest with kubectl
 - kg and kgctl log an error if the crd is not present
 - now validation should actually work

Signed-off-by: leonnicolas <leonloechner@gmx.de>
2021-06-14 12:59:33 +02:00
..
.travis.yml Use apiextension v1 2021-06-14 12:59:33 +02:00
LICENSE Use apiextension v1 2021-06-14 12:59:33 +02:00
README.md Use apiextension v1 2021-06-14 12:59:33 +02:00
colorable_appengine.go Use apiextension v1 2021-06-14 12:59:33 +02:00
colorable_others.go Use apiextension v1 2021-06-14 12:59:33 +02:00
colorable_windows.go Use apiextension v1 2021-06-14 12:59:33 +02:00
go.mod Use apiextension v1 2021-06-14 12:59:33 +02:00
go.sum Use apiextension v1 2021-06-14 12:59:33 +02:00
go.test.sh Use apiextension v1 2021-06-14 12:59:33 +02:00
noncolorable.go Use apiextension v1 2021-06-14 12:59:33 +02:00

README.md

go-colorable

Build Status Codecov GoDoc Go Report Card

Colorable writer for windows.

For example, most of logger packages doesn't show colors on windows. (I know we can do it with ansicon. But I don't want.) This package is possible to handle escape sequence for ansi color on windows.

Too Bad!

So Good!

Usage

logrus.SetFormatter(&logrus.TextFormatter{ForceColors: true})
logrus.SetOutput(colorable.NewColorableStdout())

logrus.Info("succeeded")
logrus.Warn("not correct")
logrus.Error("something error")
logrus.Fatal("panic")

You can compile above code on non-windows OSs.

Installation

$ go get github.com/mattn/go-colorable

License

MIT

Author

Yasuhiro Matsumoto (a.k.a mattn)