scarf
scarf
### Version 2.1.3 ### Platform linux ### What steps will reproduce the bug? 1. initialize lume project with esbuild. ``` . ├── _config.ts ├── _site │ ├── a.js │ └──...
# Summary I think there's some room for improvement for error messages on top level declarations[^1] (module, import). [^1]: Also the word 'top level declaration' could be made more helpful...
### Abstract ```nim doAssert Path"/foo" / "bar" / "baz" == Path"/foo/bar/baz" ``` ### Motivation ```nim Path"/foo" / "bar" / "baz" ``` is more convenient than ```nim Path"/foo" / Path"bar" /...
## Summary  - stepping stone for #151
## Motivation - The type `DataFrame` and `Series` in `nodejs-polars` lack generic type signature. - Being able to know dataframe's structure in the type signature improves productivity and safety. -...
# Summary `createStreaming` takes forever when running example code from [deno.land](https://deno.land/x/[email protected]) ```ts import { createStreaming, GlobalConfiguration, } from "https://deno.land/x/dprint/mod.ts" const globalConfig: GlobalConfiguration = { indentWidth: 2, lineWidth: 80, } const...
## Steps to reproduce 1. install bun v0.7.2 2. `bun install` 3. `bun run benchmark` ## Output ``` >>> bun run benchmark $ node bench.mjs 30 frameworks - bun/baojs -...
**Is your feature request related to a problem? Please describe.** introduce `invert` and `invertBy` function similar to [lodash](https://lodash.com/docs/4.17.15#invert). **Describe the solution you'd like** ```ts /** * @example * ```ts *...
## Summary ``` - A (merge base) - B (remote HEAD) \ C (PR HEAD) - C' (auto-fixed commit) ``` when `autofix.ci` creates commit `C'` from `C`, it seems to...