Results 77 comments of pfg

May not be possible without an extension: - new reddit has migrated off of react and no longer exposes clientside routing in the same way (they still have it somewhat,...

> Either that, or we need an `unreachable` which doesn't become undefined behavior in fast builds, or another separate keyword. I think `@panic()` does this

`bun test:todo` is running the script for me on bun 1.1.18. What is the error you're seeing? And what version of bun + which operating system are you using ```...

`for` iterates by bytes, "好" is one grapheme cluster composed of one codepoint composed of three bytes. Zig itself supports iteration by bytes (`for ("str")`), and codepoints (`std.unicode.Utf8View.iterator()`), however grapheme...

':' in a path is not allowed on windows and displayed as '/' on mac, so using `:` it would not be possible to update the zig downloads to use...

- In `npm pack`, just `!dist` didn't work for me. `!dist/*` includes all files in dist, but not subfolders. `!dist/**/*` includes all files and subfolders - In `.gitignore` with git,...

@ItsWendell The texlive fetch problem from the issue is fixed for me in latest canary (not bun 1.2.2), do you have any more information to help reproduce where you're still...

- `bun install` doesn't support the `--prefix` argument, so it's trying to install the package `./` which is causing problems - probably DeleteFileBun is being called with sub_path_w = ""...