Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-11-21 | add env var for disabling bun.js SSR | 1 | -1/+1 | ||
2021-11-21 | [HMR] Large perf improvement for JS hot reloads at runtime | 2 | -8/+50 | ||
From benchmarking, I noticed that a lot of time was spent running `HMRModule.update()`. We don't need to call that function if updates for the same module ID have not changed any exports | |||||
2021-11-16 | Update fixtures.zig | 1 | -0/+11 | ||
2021-11-16 | [router] Improve test coverage & handle case-sensitive static routes better | 1 | -3/+140 | ||
2021-11-16 | [router] Fix case sensitivity bug with route params | 1 | -2/+2 | ||
2021-11-16 | [router] Tweak sorting order & update routing tests | 3 | -22/+60 | ||
2021-11-16 | [router] Update router tests | 1 | -75/+84 | ||
2021-11-16 | [internal] Fix issue with tests | 1 | -2/+2 | ||
2021-11-16 | [router] Fix bug with dynamic route params for route segments in the middle | 1 | -1/+1 | ||
2021-11-16 | [router] small cleanup | 1 | -5/+7 | ||
2021-11-16 | [router] Fix edgecase with trailing slashes in directory path | 1 | -1/+3 | ||
2021-11-15 | Fix #66 | 1 | -1/+1 | ||
embarassing! | |||||
2021-11-15 | [bun dev] When `--disable-bun.js` flag is passed, don't send 500s for ↵ | 1 | -1/+12 | ||
rendering the fallback | |||||
2021-11-15 | [JS Printer] Don't escape slashes | 1 | -0/+1 | ||
2021-11-15 | [internal] `const` is faster than `var` (in Zig! not javascript) | 1 | -2/+2 | ||
2021-11-15 | [JS Printer] Fix bug with template literals | 1 | -10/+2 | ||
2021-11-11 | slightly reduce reallocations | 1 | -4/+4 | ||
2021-11-11 | [JSON Parser] Improve perf by 2%-4% | 2 | -13/+77 | ||
We warn when a JSON object has duplicate keys, but detecting duplicate keys has a cost. Now the hash table used for deduping keys is pooled instead of reallocated each time This also removes a call to potentially resize object properties and arrays to their smallest possible size. Resizing an array can be expensive | |||||
2021-11-09 | fixup | 1 | -8/+2 | ||
2021-11-09 | fix linux build | 1 | -2/+2 | ||
2021-11-09 | Fix missing symbol error for pre-macOS 11bun-v0.0.48 | 5 | -10/+591 | ||
2021-11-08 | :camera: | 1 | -1/+1 | ||
2021-11-08 | Disable Object.freeze | 1 | -0/+14 | ||
2021-11-08 | [JS Printer] Fix bug with optional chain | 2 | -7/+12 | ||
2021-11-07 | [bun run] Remove unnecessary code | 1 | -7/+0 | ||
2021-11-07 | [resolver] Fix race condition that can cause the elapsed counter to integer ↵ | 1 | -2/+6 | ||
overflow | |||||
2021-11-07 | Improve ZSH completionsbun-v0.0.46 | 1 | -8/+16 | ||
2021-11-07 | [bun run] Filter out builtin commands from showing up at the top | 1 | -17/+13 | ||
2021-11-07 | [bun run] Filter out js files that start with `.` from completions | 1 | -1/+1 | ||
2021-11-07 | [bun run] Filter out `post*` and `pre*` from the completions | 1 | -1/+17 | ||
2021-11-07 | [zsh] Better zsh completions install dir guessing | 1 | -29/+26 | ||
2021-11-06 | [internal] Generated files | 3 | -8/+2 | ||
2021-11-06 | [internal] Use a better timer for measuring parsing & resolving timings | 2 | -9/+11 | ||
2021-11-05 | [resolver] Fix bug with package.json `"exports"` resolution with a suffix ↵ | 1 | -5/+4 | ||
after the wildcard | |||||
2021-11-05 | [bun run] Fix issue with \\" \\" in `scripts` | 1 | -0/+7 | ||
2021-11-05 | Update run_command.zig | 1 | -2/+2 | ||
2021-11-05 | [bun run] Exclude .config.* files from showing up as runnable with Bun.js | 1 | -1/+5 | ||
2021-11-05 | :camera: Snapshots | 2 | -1/+2 | ||
2021-11-05 | [bun run] Fix bug with yarn getting replaced for `-` commands | 1 | -0/+20 | ||
2021-11-05 | [bun run] Improve `fish` completions by adding a description | 3 | -2/+72 | ||
2021-11-04 | [bun run][bun create] Do not follow symlinks when exec'ing a child process | 2 | -20/+22 | ||
2021-11-04 | [bun run] Fix bug with quotes and spaces | 1 | -93/+207 | ||
Fixes #53 | |||||
2021-11-04 | Update string_immutable.zig | 1 | -0/+7 | ||
2021-11-04 | [internal] fmt | 1 | -20/+28 | ||
2021-11-04 | [JS Parser] Print � for invalid WTF-8 input | 1 | -165/+169 | ||
2021-11-04 | [JS Parser] Decode JavaScript-like input as WTF-8 instead of UTF-8 | 1 | -40/+78 | ||
2021-11-04 | [JSX] Match esbuild behavior for multiline JSX string literals | 2 | -32/+67 | ||
2021-11-03 | [JSX] Fix regression with JSX entities | 2 | -6/+20 | ||
2021-11-03 | Update install.sh | 1 | -0/+1 | ||
2021-11-03 | [installer] Detect rosetta in install.sh | 1 | -0/+8 | ||