Linjie Ding
Linjie Ding
This tool is pretty slow when I tried piping a large diff to it, taking nearly 4 seconds. So I profiled it with `perf` and found that a lot of...
type-enum does not work if the enum values are scoped packages such `@foo/bar`. ## Expected Behavior Commit message such as `fix(@foo/bar): fix some bug` should be supported, in a monorepo...
With the current `ToRawPrecision` spec, the operation `ToRawPrecision(9.99, 1, 2)` will return a record like this: ``` { formattedString: '1.0', roundedNumber: 10, integerDigitsCount: 1 } ``` which is weird in...
In `Intl.NumberFormat` spec, the `notationSubPattern` is used to "expand" the `{number}` pattern part in the abstract operation [`PartitionNumberPattern`][PartitionNumberPattern]. The substitution of currency and sign parts are independent from the notation...
Times New Roman math font (for consistency).
Quick fix for CJK punctuation typesetting.
### What is the current behavior? _No response_ ### Describe the feature We have a number of npm dependencies that rely on the lifecycle scripts to build themselves using gyp....
### What happened? When `resolveJsonModule` is set, TypeScript type check will read JSON files to infer the types. For example: ```starlark # foo/BUILD.bazel ts_library( name = "foo", srcs = ["foo.ts",...
### What happened? Libraries such as `lodash-es` relies on `"sideEffects": false` field in their `package.json` to property eliminate (tree-shake) unused utilities in the resulting bundle. But `rules_esbuild` does not seem...
Currently there is no way to support options with string values. For example, `undef` can have values `true`, `false`, and `strict`. This is useful if we want to enforce strict...