Rules for bringing bazel artifacts out of the bazel output directories and into your workspace.
Add to your MODULE.bazel
file:
bazel_dep(name = "bzlws", version = "0.2.0")
On windows runfiles aren't enabled by default. bzlws
needs runfiles in order to work. Enable them by adding this to your .bazelrc
:
build --enable_runfiles
See Documentation for usage
MIT