-
I was trying to `load()` `paths.bzl` from skylib:
```console
$ go install go.starlark.net/cmd/starlark@latest
$ starlark paths.bzl
paths.bzl:309:9: undefined: struct
```
-
**Is your feature request related to a problem? Please describe.**
We're often on the look-out for new languages to add support for, in Topiary. Starlark may be worth looking into, given our connecti…
-
@fmeum (https://github.com/bazelbuild/bazel-gazelle/pull/1852) and I (https://github.com/bazelbuild/bazel-gazelle/pull/1917) have been trying to make the bazel-gazelle `go_repository` PackageInfo fun…
-
### Eschewed features
- [X] This issue is not requesting templating, unstuctured edits, build-time side-effects from args or env vars, or any other eschewed feature.
### What would you like to have …
-
Starlark code:
```starlark
as_json = json.encode('{"key1": 1, "key2": 2}')
print(as_json)
```
When you run this with starlark_go it works as expected. It prints:
```bash
{"key1": 1, "key2…
-
Release 0.6.0 is expected to comprise:
1. Starlark implementations of all rules
2. Starlark implementations of all providers
3. Tools migrated from the Bazel repo to the rules_android repo
4. Co…
-
### What's your CLI version?
1.4.1
### Description & steps to reproduce
When running a Starlark package via the SDK's `RunStarlarkPackage` (or its remote counterpart), I'm fetching the respon…
-
### Check for existing issues
- [X] Completed
### Describe the feature
bazel BUILD MODULE and Workspace Support
### Environment
bazel buidifier supprt linux and Mac
### If applicable, add mockup…
-
Commit e60b2f4dbd8201bea9039597546e5c6ba0b1b432 switched to Go Protobuf v2, but this breaks the K8S example.
Reverting to f561f12ccefbd35b70efc8c7c377dace5511b1ff does not exhibit the same panic.
…
-
Some toy code that reproduces this:
```
package main
import (
"fmt"
"github.com/starlight-go/starlight"
)
func main() {
env := map[string]interface{}{"my_callout": my_callout}
_, …