Duarte Nunes
Duarte Nunes
# 🐞 bug report ### Affected Rule `nodejs_binary` / `nodejs_test` ### Is this a regression? Yes, 4.4.1 works fine, but 4.4.2 and 4.4.3 are broken. This is likely related to...
# 🐞 bug report ### Affected Rule `nodejs_binary` ### Is this a regression? No. ### Description When using ESM modules, importing a `js_library` with a defined `package_name` fails. ## 🔬...
Having `crate_universe` provide crate-specific wrappers for `rust_library`/`rust_binary` allows it to already populate the `deps`, `aliases`, and could even add `Cargo.toml` to `compile_data`. This way users wouldn't need to call `all_crate_deps`...
I found a couple of situations where the handling around the base path isn't straightfoward: 1. When composing ``'s, like such: ```tsx ... ... ``` The inner router's base will...
Macros like `LOG_THROW_IF` can be used to check invariants in code that's executed often. They generate a lot of code, which can pollute the i-cache. Similarly for log statements.
## Bug Report ### Version ``` ├── aws-endpoint v0.1.0 (https://github.com/awslabs/aws-sdk-rust?tag=v0.0.12-alpha#d61aa957) │ ├── aws-types v0.1.0 (https://github.com/awslabs/aws-sdk-rust?tag=v0.0.12-alpha#d61aa957) │ └── smithy-http v0.0.1 (https://github.com/awslabs/aws-sdk-rust?tag=v0.0.12-alpha#d61aa957) │ ├── smithy-types v0.0.1 (https://github.com/awslabs/aws-sdk-rust?tag=v0.0.12-alpha#d61aa957) ├── aws-sdk-s3 v0.0.12-alpha (https://github.com/awslabs/aws-sdk-rust?tag=v0.0.12-alpha#d61aa957) │...
I have a `js_binary` rule that I'm running outside of bazel, where a dependency copies a file from one place to another. However, the directory where the copy happens is...
esbuild will happily crawl my filesystem to find a tsconfig.json file, and then use its paths configuration to do file resolution. However, in my scenario (a monorepo built with Bazel),...
## Description cosmiconfig-typescript-loader requires it as a peer dependency. ## Type of change - [X] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [X] I have followed...
Currently, `max_successive_merges` performs a read-before-write from disk to replace the current merge value in the memtable with a `put`. That read is blocking, which stalls the current thread. It would...