Alex Eagle

Results 1033 comments of Alex Eagle

fyi @cgrindel as you ran across this in https://github.com/bazel-contrib/bazel_features/pull/33

@etlovett is this issue resolved by @sjbarag comment there? Is there still a bug in rules_js?

Discussion from Slack: rules_js deviates from pnpm behavior. If you have a dep "first-party": "workspace:*", pnpm will link node_modules/first-party to the source dir for first-party. Whereas rules_js links it to...

What do you think of the alternative: making it possible to write an aspect that invokes starlark_doc_extract actions? If someone worked on such a PR to bazelbuild/bazel do you think...

> What's the intent? Yes I'm experimenting with a pipeline to generate docs, similar to readthedocs. @rickeylev and I discussed in a rules authors SIG meeting. https://github.com/alexeagle/doc.bzl is the prototype.

Another intent here is merely to ensure that rulesets have correct `bzl_library` targets. As I'm visiting the 720 modules on BCR I find that many are missing deps, as one...

`starlark_doc_extract` DOES take the `bzl_library` as an input. It's okay that you need one per source file, just by iterating them, i.e. ``` +def bzl_library(name, srcs = [], deps =...

I could possibly send a PR for it if it's accepted and no one else gets to it.