Yannic

Results 77 comments of Yannic

I think @jjbubudi is right, I'm seeing smaller bundle sizes and we use advanced optimizations for all our code (I don't have exact numbers to share here because there is...

Wow, that's great news @jjbubudi! Unfortunately, `--generate_exports` won't help in my case. We use `@export` in our library to export public parts of the API. However, `@export` is translated to...

`java_proto_library` (and `java_library`) do not "return" the srcjar by default, i.e. `srcs = [":service_a_java_proto"],` will try to use the compiled jar as input (me thinks). I haven't used `pom_file`, but...

Just to get this right: if you do ```python java_library( name = "service_a_java", deps = [ "//dependencies/maven/artifacts/com/google/protobuf:protobuf-java", ], visibility = ["//visibility:public"], ) ``` you get a working pom that declares...

Note: on Windows, `ctx.actions.symlink` most likely always creates a copy: https://cs.opensource.google/bazel/bazel/+/master:src/main/java/com/google/devtools/build/lib/windows/WindowsFileSystem.java;l=96;drc=cff2ea55dafc57d7d2db813522942e2ee137ed08

The reason why I thought of aspects to implement this is so users don't have to pay the overhead for languages they don't use during analysis, and that it might...

Sorry for the delay! Yeah, the `moduleLoad` seems to be an existing issue in `rules_closure`. I'm a bit hesitant to add suppresses by default, so we should fix the root...

Sorry for taking so long to come back to this! The longer I think about this, the more opposed I get to allow this. I can't cite the relevant spec...

Doesn't node resolution mode also allow importing folders (IIRC by loading `index.js` if it exists), making import statements potentially ambiguous, thus breaking incremental type-checking? Let's say we have the following...