njlr
Results
151
issues of
njlr
```starlark load("@aspect_bazel_lib//lib:write_source_files.bzl", "write_source_files") load("@bazel_skylib//rules:copy_file.bzl", "copy_file") copy_file( name = "foobar", src = "//some/generated:file", out = "foobar.json", ) write_source_files( name = "write_foobar", files = { "foobar.json": ":foobar", }, ) ``` This will...
can close?