Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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; } ``` | |||||
2022-02-27 | Update README.md | 1 | -17/+16 | ||
2022-02-27 | Update README.md | 1 | -17/+17 | ||
2022-02-27 | Update README.md | 1 | -3/+0 | ||
2022-02-27 | [JS Parser] Improve test coverage | 1 | -9/+408 | ||
2022-02-27 | typegenerator | 5 | -89/+139 | ||
2022-02-27 | Update jsc.zig | 1 | -0/+3 | ||
2022-02-27 | [JS Printer] Fix edgecase with optional chaining, class static block ↵ | 1 | -56/+86 | ||
initialization and private identifiers | |||||
2022-02-27 | [JS Parser] AST changes for class static block & private identifiers | 1 | -5/+27 | ||
2022-02-27 | [JS Parser] Fix bug with unicode identifiers | 2 | -31/+142 | ||