diff --git a/box.go b/box.go index 79954f2..c3364f7 100644 --- a/box.go +++ b/box.go @@ -27,9 +27,10 @@ import ( "io" "strings" + colorful "github.com/lucasb-eyer/go-colorful" + "github.com/gonvenience/bunt" "github.com/gonvenience/term" - colorful "github.com/lucasb-eyer/go-colorful" ) // BoxStyle represents a styling option for a content box diff --git a/errors_test.go b/errors_test.go index f46dac2..e8bd9a9 100644 --- a/errors_test.go +++ b/errors_test.go @@ -30,10 +30,11 @@ import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" + "github.com/pkg/errors" + . "github.com/gonvenience/bunt" . "github.com/gonvenience/neat" "github.com/gonvenience/wrap" - "github.com/pkg/errors" ) var _ = Describe("error rendering", func() { diff --git a/output.go b/output.go index 0a0e94d..f451e10 100644 --- a/output.go +++ b/output.go @@ -26,10 +26,11 @@ import ( "fmt" "strings" - "github.com/gonvenience/bunt" colorful "github.com/lucasb-eyer/go-colorful" yamlv2 "gopkg.in/yaml.v2" yamlv3 "gopkg.in/yaml.v3" + + "github.com/gonvenience/bunt" ) // DefaultColorSchema is a prepared usable color schema for the neat output diff --git a/output_json.go b/output_json.go index cdc6140..2cf8b1c 100644 --- a/output_json.go +++ b/output_json.go @@ -27,9 +27,10 @@ import ( "strings" "time" - "github.com/gonvenience/bunt" yamlv2 "gopkg.in/yaml.v2" yamlv3 "gopkg.in/yaml.v3" + + "github.com/gonvenience/bunt" ) // ToJSONString marshals the provided object into JSON with text decorations diff --git a/output_yaml.go b/output_yaml.go index 69fdf2d..5ef5df4 100644 --- a/output_yaml.go +++ b/output_yaml.go @@ -25,9 +25,10 @@ import ( "reflect" "strings" - "github.com/gonvenience/bunt" yamlv2 "gopkg.in/yaml.v2" yamlv3 "gopkg.in/yaml.v3" + + "github.com/gonvenience/bunt" ) // ToYAMLString marshals the provided object into YAML with text decorations