mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds build rules for "artificially" generating `DocEntry` collections for block and element APIs. The two rules are very similar, but _just_ different enough that it's worth having two separate implementations. PR Close #52480
12 lines
338 B
Text
12 lines
338 B
Text
load("//tools/manual_api_docs:generate_element_api_json.bzl", "generate_element_api_json")
|
|
load("//tools/manual_api_docs:generate_block_api_json.bzl", "generate_block_api_json")
|
|
|
|
generate_element_api_json(
|
|
name = "element_test",
|
|
srcs = ["dummy.md"],
|
|
)
|
|
|
|
generate_block_api_json(
|
|
name = "block_test",
|
|
srcs = ["dummy.md"],
|
|
)
|