From 9fcb81398f206272dbe44929d3c253a086b807aa Mon Sep 17 00:00:00 2001 From: Simon Stewart Date: Fri, 26 Feb 2021 17:41:40 +0000 Subject: [PATCH] Make documentation `bzl_library` publicly visible This allows anyone who depends on `rules_jvm_external` and imports "something" from these rules into their own rules to be able to generate stardoc of their own functions. I've filed https://github.com/bazelbuild/stardoc/issues/93 to track this issue. Once it's fixed, we can close this. --- BUILD | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/BUILD b/BUILD index c732e8f8c..af5ad7010 100644 --- a/BUILD +++ b/BUILD @@ -33,6 +33,9 @@ stardoc( bzl_library( name = "implementation", srcs = [ + ":coursier.bzl", + ":defs.bzl", + ":specs.bzl", "//:private/coursier_utilities.bzl", "//:private/dependency_tree_parser.bzl", "//:private/proxy.bzl", @@ -48,9 +51,9 @@ bzl_library( "//private/rules:pom_file.bzl", "//settings:stamp_manifest.bzl", "//third_party/bazel_json/lib:json_parser.bzl", - ":coursier.bzl", - ":defs.bzl", - ":specs.bzl", + ], + visibility = [ + "//visibility:public", ], )