Skip to content

Commit

Permalink
Make documentation bzl_library publicly visible (#527)
Browse files Browse the repository at this point in the history
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 bazelbuild/stardoc#93 to track
this issue. Once it's fixed, we can close this.
  • Loading branch information
shs96c authored Mar 11, 2021
1 parent 6a3bd6a commit b2e061d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ bzl_library(
"//settings:stamp_manifest.bzl",
"//third_party/bazel_json/lib:json_parser.bzl",
],
visibility = [
# This library is only visible to allow others who depend on
# `rules_jvm_external` to be able to document their code using
# stardoc.
"//visibility:public",
],
)

genrule(
Expand Down

0 comments on commit b2e061d

Please sign in to comment.