mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-27 17:43:27 +00:00
0f5e1dcafd
* chore(deps): upgrade stardoc This uses the Bazel 7 'starlark_doc_extract' rule which our docsite expects for slurping data. * chore: stardoc setup in WORKSPACE too * chore: skip stardoc on bazel 6 in cases where the legacy extractor produces different docstrings
14 lines
434 B
Python
14 lines
434 B
Python
"""A rule that provides file(s) specific via DefaultInfo from a given target's DefaultInfo or OutputGroupInfo.
|
|
|
|
See also [select_file](https://github.com/bazelbuild/bazel-skylib/blob/main/docs/select_file_doc.md) from bazel-skylib.
|
|
"""
|
|
|
|
load(
|
|
"//lib/private:output_files.bzl",
|
|
_make_output_files = "make_output_files",
|
|
_output_files = "output_files",
|
|
)
|
|
|
|
output_files = _output_files
|
|
make_output_files = _make_output_files
|