Rob Figueiredo

Results 40 issues of Rob Figueiredo

It looks like v8go does not support ES Modules. For example, I translated the Context example to use modules: ``` package main import ( "fmt" "rogchap.com/v8go" ) func main() {...

I'm getting a NPE in Closure Compiler when running it via the rules_closure Bazel rules. I have not succeeded in creating a small reproducer, so I was hoping for some...

I would like to be able to write a unit test that validates that the set of dig providers is correct to invoke a particular function. Since some providers are...

I want to use extensionless ES6 imports, e.g. ``` import { foo } from '/path/to/file'; ``` where the module is defined in //path/to/file.js That seems to work with closure_js_binary without...

cla: yes

To migrate my company's JS codebase to `rules_closure`, I added a language module to Gazelle: https://github.com/bazelbuild/bazel-gazelle/compare/master...robfig:js I don't expect that it will be merged into the upstream project, but @achew22...

When using rules_closure to compile a trivial js application that uses ES6 modules, compilation fails unless `moduleLoad` is suppressed. This can be seen in https://github.com/bazelbuild/rules_closure/pull/409

We are just starting to use rules_closure for real, and the second test suite that I've migrated shows flaky behavior on our CI system. I was hoping for some advice...

Hi, I'm just taking these rules for a spin. I know they say alpha, so if the issues aren't helpful, feel free to tell me to hold off for a...

Hi, I'm helping out as a maintainer of bazelbuild/rules_go, and I am requesting access to BuildKite so that I can do things like re-run builds which have suspected spurious failures....

Presently, when validation encounters a `$ref` it looks it up in a package-scoped DefaultSchemaPool, and not finding it there requests it over HTTP. The problem with this for my use...