angular/aio/content/cli/help/BUILD.bazel
Joey Perrott 2e401c74e7 fix(docs-infra): include CLI reference docs in adev (#54591)
include the reference docs in the adev application

PR Close #54591
2024-02-28 12:48:09 +01:00

24 lines
506 B
Text

load("@npm//@angular/build-tooling/bazel/api-gen/rendering:render_api_to_html.bzl", "render_api_to_html")
package(default_visibility = ["//visibility:public"])
exports_files(["build-info.json"])
filegroup(
name = "help",
srcs = glob(
["*"],
exclude = [
# Exlucde build-info.json as it is not a help entry.
"build-info.json",
"BUILD.bazel",
],
),
)
render_api_to_html(
name = "cli_docs",
srcs = [
":help",
],
)