bazel: updating build files

This commit is contained in:
2023-05-04 15:11:15 -07:00
parent d66cfe1145
commit f8c64d3be5
37 changed files with 77 additions and 57 deletions

View File

@@ -8,11 +8,12 @@ go_library(
],
importpath = "git.wntrmute.dev/kyle/goutils/config",
visibility = ["//visibility:public"],
deps = ["@ht_sr_git_kisom_goutils//config/iniconf:go_default_library"],
deps = ["//config/iniconf"],
)
go_test(
name = "config_test",
size = "small",
srcs = [
"config_test.go",
"path_test.go",

View File

@@ -9,6 +9,7 @@ go_library(
go_test(
name = "iniconf_test",
size = "small",
srcs = ["iniconf_test.go"],
data = glob(["testdata/**"]),
embed = [":iniconf"],