2021-11-08 14:20:26 +00:00
|
|
|
# These loads are in the docs/ package rather than anything users depend on
|
|
|
|
# so that the dependency on stardoc doesn't leak to them.
|
2021-11-10 14:34:00 +00:00
|
|
|
load("//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
|
2021-11-08 14:20:26 +00:00
|
|
|
|
2021-11-17 05:30:32 +00:00
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib/private:copy_to_directory",
|
|
|
|
out_label = "//docs:copy_to_directory.md",
|
|
|
|
)
|
|
|
|
|
2021-11-10 14:34:00 +00:00
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib:docs",
|
|
|
|
out_label = "//docs:docs.md",
|
|
|
|
)
|
2021-11-08 14:20:26 +00:00
|
|
|
|
2021-11-10 14:34:00 +00:00
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib:expand_make_vars",
|
|
|
|
out_label = "//docs:expand_make_vars.md",
|
|
|
|
)
|
2021-11-08 14:20:26 +00:00
|
|
|
|
2021-11-10 14:34:00 +00:00
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib:params_file",
|
|
|
|
func_template = "//docs/templates:func_html.vm",
|
|
|
|
out_label = "//docs:params_file.md",
|
|
|
|
)
|
|
|
|
|
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib:paths",
|
|
|
|
out_label = "//docs:paths.md",
|
|
|
|
)
|
2021-11-08 14:20:26 +00:00
|
|
|
|
2021-11-10 14:34:00 +00:00
|
|
|
stardoc_with_diff_test(
|
|
|
|
bzl_library_target = "//lib:utils",
|
|
|
|
out_label = "//docs:utils.md",
|
2021-11-08 14:20:26 +00:00
|
|
|
)
|
|
|
|
|
2021-11-10 14:34:00 +00:00
|
|
|
update_docs(
|
2021-11-08 14:20:26 +00:00
|
|
|
name = "update",
|
2021-11-10 14:34:00 +00:00
|
|
|
docs_folder = "docs",
|
2021-11-08 14:20:26 +00:00
|
|
|
)
|