-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export bzl_library with package files #564
Comments
I have a change ready to send as a PR which will provide sources for running stardoc against. |
Good to know! Just to clarify, I'm building docs for rules I'm authoring. It's just that stardoc requires the full transitive set of my deps. |
Works perfectly! I still had to add
as dependencies to my |
Thanks.
That is strange. Why :mappings.bzl? That is not actually used by
anything. It is just a forwarder. Same for pkg.bzl?
Do you use those instead of //pkg:mappings.bzl and //pkg:tar.bzl? They are
going away sometime this quarter.
#562
…On Wed, Apr 6, 2022 at 2:12 PM Duarte Nunes ***@***.***> wrote:
Works perfectly! I still had to add
***@***.***_pkg//:mappings.bzl",
***@***.***_pkg//:pkg.bzl",
***@***.***_pkg//pkg:bzl_srcs",
as dependencies to my bzl_library.
—
Reply to this email directly, view it on GitHub
<#564 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAXHHHGZZUFM2SQTFZTMECLVDXHZ7ANCNFSM5SHSE5YQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Ah! Thanks, I was indeed using those instead of the |
Closing as this is fixed in 0.7.0. |
This allows consumers of rules_pkg to generate docs using stardoc. An example is how skylib does it.
The text was updated successfully, but these errors were encountered: