angular/adev/shared-docs/utils/BUILD.bazel
hawkgs 220608e4cc docs(docs-infra): generate errors and extended-diagnostics route NavigationItem-s (#59355)
Generate the `NavigationItem`-s as part of adev/shared-docs pipeline and use the output JSON files instead of the hardcoded objects in the `sub-navigation-data.ts`.

PR Close #59355
2025-01-14 11:00:06 -05:00

34 lines
632 B
Text

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:private"])
ts_library(
name = "utils",
srcs = [
"index.ts",
],
visibility = ["//adev/shared-docs:__subpackages__"],
deps = [
":lib",
],
)
ts_library(
name = "lib",
srcs = glob(
[
"**/*.ts",
],
exclude = [
"index.ts",
"**/*.spec.ts",
],
),
deps = [
"//adev/shared-docs/interfaces",
"//adev/shared-docs/providers",
"//packages/core",
"//packages/router",
"@npm//fflate",
],
)