Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-29 | [JS Printer] Fix CJS <> ESM interop edgecase | 1 | -0/+7 | ||
For code like this: ```js module.exports = require("foo") ``` If `"foo"` is bundled, we should access it as the namespace reference from the bundle. Previously, we assumed it would be a property access. | |||||
2022-01-29 | Fix bug introduced in 97d17904 | 1 | -1/+1 | ||
2022-01-29 | Slice once | 1 | -5/+8 | ||
2022-01-29 | Tag imports | 1 | -0/+5 | ||
2022-01-28 | Update toml_lexer.zig | 1 | -1/+0 | ||
2022-01-28 | Implement TOML parser | 14 | -18/+1990 | ||
No Date/DateTime/Time/Local Time yet | |||||
2022-01-28 | Update AST layout to store capacity for items | 11 | -234/+346 | ||
We want to be able to push to the list | |||||
2022-01-27 | Stop reading `"bun"` from package.json | 1 | -29/+0 | ||
cc @hanford | |||||
2022-01-27 | [bunfig] Implement config file format | 20 | -156/+667 | ||
2022-01-27 | Don't look like a crash when CLI args are missing | 1 | -0/+3 | ||
2022-01-27 | [cli] Add support for commands which optionally have one argument | 3 | -12/+22 | ||
2022-01-26 | print file name on panic | 1 | -1/+1 | ||
2022-01-25 | merge | 2 | -1/+2 | ||
2022-01-25 | Slightly safer | 1 | -1/+1 | ||
2022-01-25 | Split http into files | 7 | -1079/+1055 | ||
2022-01-25 | On successful connect, switch to non-blocking sockets until we're about to close | 1 | -2/+18 | ||
2022-01-25 | Fix getsockopt() | 1 | -2/+5 | ||
2022-01-24 | Automatically retry on would block | 1 | -8/+4 | ||
2022-01-24 | Fallback to readev / writev | 1 | -7/+226 | ||
2022-01-24 | No io_uring for Ubuntu 20.04 | 5 | -27/+42 | ||
2022-01-23 | Update io_linux.zig | 1 | -0/+1 | ||
2022-01-23 | [linux][http] return errno instead of unexpected | 1 | -2/+31 | ||
2022-01-23 | [http] Remove usages of `unreachable` in syscall error handling | 1 | -10/+0 | ||
2022-01-23 | Update io_linux.zig | 1 | -0/+1 | ||
2022-01-23 | Use non-cancellable syscalls for HTTP & use errno for errors | 3 | -78/+933 | ||
2022-01-23 | Improve error message when `bun upgrade` fails | 1 | -1/+1 | ||
2022-01-23 | Update analytics_thread.zig | 1 | -0/+8 | ||
2022-01-23 | Add a callback when a thread spawns | 1 | -2/+7 | ||
2022-01-23 | Use a separate heap for HTTP | 3 | -46/+63 | ||
2022-01-23 | fake segfault test | 1 | -3/+2 | ||
2022-01-23 | Add kernel version to crash report | 1 | -3/+7 | ||
2022-01-23 | Update main.zig | 1 | -1/+1 | ||
2022-01-23 | Add C++ exception handler | 2 | -2/+3 | ||
2022-01-22 | Update helpers.h | 1 | -2/+2 | ||
2022-01-22 | Update helpers.h | 1 | -1/+5 | ||
2022-01-22 | Update linker.zig | 1 | -1/+1 | ||
2022-01-22 | Ensure we fully copy strings | 3 | -9/+23 | ||
2022-01-22 | Update http.zig | 1 | -1/+1 | ||
2022-01-22 | Rename `bun:runtime` -> `bun:wrap` so it fits 8 chars | 3 | -4/+7 | ||
2022-01-22 | Don't do isolated copy when we don't need to | 1 | -6/+2 | ||
2022-01-22 | Instead of 4 loops, we can do one switch statement | 1 | -12/+7 | ||
2022-01-22 | [Bun.js] Resolve dynamic imports lazily | 1 | -0/+5 | ||
2022-01-22 | No more leading `./` necessary to pass a script to bun to execute | 1 | -1/+7 | ||
2022-01-22 | Make `Ref` more safe | 4 | -8/+39 | ||
2022-01-22 | Ensure we allocate the correct number of argv | 1 | -9/+18 | ||
2022-01-22 | [Resolver] Improve how we detect ESM | 1 | -17/+37 | ||
2022-01-22 | Update report.zig | 1 | -0/+8 | ||
2022-01-22 | [Resolver] Improve how we detect ESM | 1 | -13/+16 | ||
2022-01-22 | Use newer hash table | 1 | -18/+22 | ||
2022-01-22 | Update js_parser.zig | 1 | -1/+1 | ||