peridot/vendor/github.com/fatih/color/BUILD.bazel

17 lines
414 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "color",
srcs = [
"color.go",
"doc.go",
],
importmap = "peridot.resf.org/vendor/github.com/fatih/color",
importpath = "github.com/fatih/color",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/mattn/go-colorable",
"//vendor/github.com/mattn/go-isatty",
],
)