Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-04 | more | 4 | -4/+6 | ||
2022-03-04 | upgrade zigjarred/upgrade-zig-2 | 49 | -454/+1013 | ||
2022-03-02 | mark more things as unreachable | 3 | -0/+5 | ||
2022-03-02 | Add context ptr to forEach in iterable | 1 | -37/+25 | ||
2022-03-02 | [bun.js] Add `Bun.inspect` – like util.inspect() | 7 | -276/+446 | ||
2022-03-02 | Make http requests a little faster | 1 | -1/+6 | ||
2022-03-02 | [bun dev] Improve HMR performance by pooling websocket threads | 1 | -37/+59 | ||
Previously, bun would create a new thread for each websocket connection. Now, it re-uses them Eventually, this should use evented i/o but other changes need to be made to support that | |||||
2022-03-02 | Send `Date` header in `bun dev` | 8 | -0/+2338 | ||
2022-03-02 | [internal] log memory allocations in mimalloc arenas | 2 | -0/+7 | ||
2022-03-02 | Reduce stack size usage by about 120 KB | 1 | -2/+6 | ||
2022-03-02 | add is_bindgen stub | 3 | -0/+5 | ||
2022-03-02 | reduce number of global constants | 1 | -55/+29 | ||
2022-03-02 | reduce number of global variables | 3 | -21/+1752 | ||
2022-03-02 | Update bindings.zig | 1 | -0/+4 | ||
2022-03-02 | Remove function from bindings | 1 | -7/+1 | ||
2022-03-02 | `DELETE` header | 1 | -0/+4 | ||
2022-03-02 | [bun.js] fix unicode handling in Router | 1 | -3/+9 | ||
2022-03-02 | [bun.js] Fix crash due to incorrectly creating string | 1 | -3/+1 | ||
2022-03-02 | remove a threadlocal | 2 | -12/+908 | ||
2022-03-02 | cleanup error printing | 2 | -2/+5 | ||
2022-03-02 | Update global.zig | 1 | -0/+17 | ||
2022-03-02 | Update fs.zig | 1 | -0/+3 | ||
2022-03-02 | [bun run] Set more environment variables | 2 | -0/+55 | ||
2022-03-02 | clean up error message when CLI flag is invalid | 1 | -1/+4 | ||
2022-03-02 | add `bun pm cache` and `bun pm cache rm` commands | 1 | -0/+20 | ||
2022-03-01 | [bun.js] `ResolveError.prototype.toString()` `BuildError.prototype.toString()` | 1 | -2/+94 | ||
2022-03-01 | add `allowBunRuntime` and `autoImportJSX` flags to Bun.Transpiler | 1 | -1/+32 | ||
2022-03-01 | cleanup code that checks if it should send an HTTP body | 2 | -6/+18 | ||
2022-03-01 | [JS Parser] Fix bug with `super` from adding class static blocks | 1 | -1/+12 | ||
2022-03-01 | Update bundler.zig | 1 | -1/+5 | ||
2022-03-01 | Remove unused bool | 1 | -3/+0 | ||
2022-03-01 | [bun.js] Allow disabling runtime imports so bun can build for node | 3 | -5/+11 | ||
2022-03-01 | [JS Parser] Make auto importing JSX a flag so the API is easier | 1 | -295/+297 | ||
2022-03-01 | cleanup | 1 | -2/+2 | ||
2022-03-01 | Update javascript.zig | 1 | -50/+0 | ||
2022-03-01 | [bun.js] shim async fs | 2 | -36/+226 | ||
2022-03-01 | [bun.js] Implement `setTimeout`, `setInterval`, `clearTimeout`, `clearInterval` | 11 | -41/+295 | ||
2022-02-27 | Update transpiler.test.js | 1 | -0/+8 | ||
2022-02-27 | [TS] Make `export {type foo}` output consistent with TS parser | 1 | -3/+45 | ||
2022-02-27 | WASM | 83 | -690/+10789 | ||
2022-02-27 | begin writing types | 1 | -0/+257 | ||
2022-02-27 | [JSON] Use UTF-8 JSON parser when it's not for JavaScript | 5 | -6/+6 | ||
2022-02-27 | Update json_parser.zig | 1 | -2/+40 | ||
2022-02-27 | :camera: | 5 | -13/+13 | ||
2022-02-27 | mark as comptime | 1 | -1/+1 | ||
2022-02-27 | Fix typo | 1 | -1/+1 | ||
Thanks @danielweck | |||||
2022-02-27 | Update build.zig | 1 | -7/+13 | ||
2022-02-27 | Bump | 1 | -1/+1 | ||
2022-02-27 | Fix https://github.com/Jarred-Sumner/bun/issues/115 | 4 | -17/+34 | ||
2022-02-27 | [TS Parser] Implement `constructor(private foo)` | 2 | -1/+91 | ||
Input: ``` class Foo { constructor(public bar: string = "baz") {} bar: number; } ``` Output: ``` class Foo { bar; constructor(bar = "baz") { this.bar = bar; } baz; } ``` |