commit | d90cbcfb5a91f3a7dacb64a59c7ea62d0091b615 | [log] [tgz] |
---|---|---|
author | Alexandre Rostovtsev <arostovtsev@google.com> | Fri Aug 04 15:27:15 2023 -0400 |
committer | GitHub <noreply@github.com> | Fri Aug 04 15:27:15 2023 -0400 |
tree | 7b18c2798aabc2b6615960c15809eab4422ae5a6 | |
parent | abe8c1d1bbbe874e594ce0fc41f16b1566f1891a [diff] |
Replace dict union "|" with dict.update for Bazel 5 compatibility (#177) Surprisingly, the release tarballs of Stardoc 0.6 almost works with Bazel 5 - except for two usages of the dict union operator. Temporarily (until ~ Stardoc 0.7 release, which will require Bazel 7) replace the union operator with dict.update; it doesn't affect readability much. Fixes #175
Stardoc is a documentation generator for Bazel build rules written in Starlark.
Stardoc provides a Starlark rule (stardoc
, see documentation) that can be used to build documentation for Starlark rules in Markdown. Stardoc generates one documentation page per .bzl
file.
Stardoc is a replacement for the deprecated “Skydoc” documentation generator.
See Skydoc Deprecation for details on the deprecation and migration details.
See our future plans for refactoring Stardoc to be more consistent with how Bazel evaluates .bzl files, and what it means for maintenance of this project.
See the maintaner's guide for instructions for cutting a new release.