Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-02-22 | Fix assertion in JSPrinter | 1 | -1/+1 | ||
2022-02-22 | Use clang-format from webkit so it's consistent | 1 | -20/+103 | ||
2022-02-21 | Move lockfile into separate file | 2 | -2795/+2878 | ||
2022-02-21 | Wrap some usages of `assert` in a conditional | 11 | -31/+36 | ||
See https://github.com/ziglang/zig/issues/10942 | |||||
2022-02-21 | Bump webkit in base image | 1 | -1/+1 | ||
2022-02-21 | Update javascript.zig | 1 | -0/+73 | ||
2022-02-21 | upgrade to latest JSC | 3 | -2/+2 | ||
2022-02-21 | upgrade JSC | 12 | -87/+96 | ||
2022-02-20 | [bun dev] Implement copy as markdown | 4 | -124/+1214 | ||
2022-02-20 | add version to Framework struct | 2 | -0/+11 | ||
2022-02-20 | [JSON] Implement a way to convert any Zig type to a JSON object | 1 | -0/+153 | ||
2022-02-20 | Update mime_type.zig | 1 | -0/+4 | ||
2022-02-20 | [bun dev] Implement `/bun:info` endpoint | 1 | -0/+51 | ||
This returns metadata for bun | |||||
2022-02-20 | [bun dev] Implement open in editor for transpiled files | 3 | -40/+117 | ||
2022-02-18 | Mention behavior | 2 | -0/+3 | ||
2022-02-18 | Add a way to specify an editor in bunfig.toml | 1 | -1/+13 | ||
2022-02-18 | Update base.zig | 1 | -14/+194 | ||
2022-02-18 | [bun dev] Errors with file names can be opened in editor now | 6 | -17/+594 | ||
2022-02-18 | Update javascript.zig | 1 | -0/+1 | ||
2022-02-18 | Use an `enum` for `Ref` instead of a buggy packed struct | 7 | -156/+161 | ||
Fixes a printing bug with `Symbol` | |||||
2022-02-18 | Update bundler.zig | 1 | -0/+2 | ||
2022-02-18 | Create entitlements.debug.plist | 1 | -0/+18 | ||
2022-02-18 | Simple dead code elimination | 8 | -194/+606 | ||
2022-02-18 | Update javascript.zig | 1 | -1/+3 | ||
2022-02-18 | [bun.js] Fix bug with getPublicPath when encountering URLs above the root | 1 | -8/+17 | ||
2022-02-18 | Update onThreadStart | 1 | -1/+2 | ||
2022-02-18 | more mimalloc | 1 | -7/+8 | ||
2022-02-18 | [bun.js] Make `typeof window` return `"undefined"` by default | 1 | -0/+10 | ||
2022-02-18 | [bun dev] Fix bug with importing `node:` namespace | 2 | -2/+94 | ||
2022-02-18 | onSpawn handler for thread | 1 | -4/+8 | ||
2022-02-18 | [Bundler] Fix race condition, 5% faster bundling | 1 | -177/+209 | ||
cc @hanford | |||||
2022-02-18 | [JS Parser] fix bugs found from tests | 1 | -24/+55 | ||
2022-02-18 | [JS Parser] Strip import assertions | 1 | -0/+43 | ||
Closes #4 | |||||
2022-02-18 | [Bun.js] Implement `crypto.randomBytes()` and `crypto.randomUUID()` | 2 | -1/+194 | ||
2022-02-18 | [Bun.js] Add a stub for `setTimeout`, `setInterval`, `clearTImeout`, ↵ | 4 | -3/+144 | ||
`clearInterval` | |||||
2022-02-18 | [JS Printer] fix edgecase with printing empty export | 1 | -0/+6 | ||
2022-02-17 | improve test coverage | 3 | -204/+343 | ||
2022-02-17 | constant folding and some cleanup | 2 | -30/+88 | ||
2022-02-17 | [JS Printer] Print `{\n}` instead of `;` for empty blocks | 1 | -0/+5 | ||
2022-02-16 | Update js_printer.zig | 1 | -14/+6 | ||
2022-02-16 | [JS Printer] Fix missing space at end of object bindings | 1 | -15/+6 | ||
See also https://github.com/evanw/esbuild/pull/2025 | |||||
2022-02-16 | [JS Parser] Fix several bugs with bindings and improve some errors | 1 | -77/+113 | ||
2022-02-16 | Update js_parser.zig | 1 | -1/+0 | ||
2022-02-16 | [js parser] pool allocated names (perf) | 1 | -2/+26 | ||
2022-02-16 | [JS Transpiler] Begin porting esbuild parser tests to bun | 1 | -23/+445 | ||
2022-02-16 | Save LLVM IR in debug build | 1 | -0/+4 | ||
2022-02-16 | mimalloc flag | 1 | -1/+1 | ||
2022-02-16 | [bun.js] Handle UTF-16 strings in `Bun.Transpiler` | 1 | -32/+50 | ||
2022-02-16 | [bun.js] Handle UTF-16 strings in `StringOrBuffer` | 2 | -13/+5 | ||
2022-02-16 | [bun.js] Fix segfault when running many bun.js instances | 2 | -4/+9 | ||