commit | 03fc6d500fb2d6d21fa4fa241298356ab3950844 | [log] [tgz] |
---|---|---|
author | Chris Rebert <github@chrisrebert.com> | Thu Jul 01 07:50:18 2021 -0700 |
committer | GitHub <noreply@github.com> | Thu Jul 01 10:50:18 2021 -0400 |
tree | d23a3d31a979120733b27f66e1d6a5d655dac53a | |
parent | 3198606db0d318f8c5224fe204bef5954033815e [diff] |
Add bzl_library for html_tables_stardoc.bzl (#104) Previously, there wasn't any bzl_library which included it.
diff --git a/stardoc/BUILD b/stardoc/BUILD index 538e79d..69d4c56 100644 --- a/stardoc/BUILD +++ b/stardoc/BUILD
@@ -26,6 +26,15 @@ ], ) +bzl_library( + name = "html_tables_stardoc", + srcs = ["html_tables_stardoc.bzl"], + visibility = ["//visibility:public"], + deps = [ + ":stardoc_lib", + ], +) + stardoc( name = "stardoc_doc", out = "stardoc_doc.md",