You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the CLI uses the github.com/gookit/color library to handle colored output in the console. While this library does its job well, it introduces an additional dependency that might not be necessary.
Suggestion:
I propose replacing the github.com/gookit/color library with ANSI escape codes for coloring text in utility/color_util.go
Here is how the current functions could be rewritten using ANSI escape codes:
Background:
Currently, the CLI uses the
github.com/gookit/color
library to handle colored output in the console. While this library does its job well, it introduces an additional dependency that might not be necessary.Suggestion:
I propose replacing the github.com/gookit/color library with ANSI escape codes for coloring text in
utility/color_util.go
Here is how the current functions could be rewritten using ANSI escape codes:
color_util.go
The text was updated successfully, but these errors were encountered: