mrmeku
mrmeku
Hit this bug today when trying to use ``` build --strategy=GoLink=linux-sandbox,remote build --strategy=GoCompile=linux-sandbox,remote ``` so that I could do GoLinking locally while doing the rest of my build on RBE....
With the 5.3.0 release candidate is this fixed? @gregmagolan https://groups.google.com/g/bazel-discuss/c/CTrwcVMov0k
I've made a smaller reproduction here: https://github.com/microsoft/TypeScript/issues/47663#issuecomment-1267631748 Hope its helpful
Ah, thanks @matthewjh , I completely missed that section of the docs. Maybe the answer here is just to add this bit of documentation to more places. If it was...
Just to say it, there is a breaking change to the types in React 18 where components need to declare if they support children in there property type definitions (by...
I'm not sure the machinism by which to do this but I think the naive approach to install mock modules would be the following: Protractor would somehow override both of...
This bug occurs pretty readily when using pnpm since the node_modules directory layout is different under pnpm than npm/yarn. Any npm package whose types reference another npm package's type will...
This is a great tracking bug to have. I have a party interested in running rules_nodejs on windows so if you can utilize this tracking bug or something else to...
This is the only tricky bit of dropping rules_docker entirely https://github.com/bazelbuild/rules_k8s/blob/7fe8176fecc0082753c97deaf0f18d434d5a8b1a/k8s/object.bzl#L68 Other than that, rules_docker can be easily replaced by `rules_oci` for packaging or by inlining helper functions which are...
@midnightconman FYI, the output of `oci_image` is always going to be a directory artifact that follows the layout specified by the OCI image-spec https://github.com/opencontainers/image-spec/blob/main/image-layout.md That should give us a reliable...