Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-08 | rename _global -> bun | 82 | -2408/+1651 | ||
2022-03-08 | [bun.js] Support logging `Headers`, `Response`, and `Request` | 4 | -72/+270 | ||
2022-03-08 | Fix https://github.com/Jarred-Sumner/bun/issues/122 | 2 | -2/+16 | ||
2022-03-08 | Update sourcemap.zig | 1 | -6/+6 | ||
2022-03-08 | [bun.js] WIP sourcemap support | 3 | -249/+646 | ||
2022-03-07 | Add VLQ bench, improve decodeVLQ perf | 2 | -3/+131 | ||
2022-03-07 | Optimize sourcemaps | 5 | -65/+140 | ||
2022-03-07 | Update options.zig | 1 | -4/+37 | ||
2022-03-07 | source maps optimizations | 11 | -85/+458 | ||
2022-03-07 | [JS] Don't make this inline | 1 | -2/+2 | ||
2022-03-07 | [JS] Slight optimization for newlines | 1 | -36/+2 | ||
2022-03-07 | [JS Parser] Fix bug with decoding escape sequences | 1 | -4/+4 | ||
2022-03-07 | [JS/JSON] Optimize parsing long strings | 1 | -1/+37 | ||
2022-03-07 | [JS Parser] Add optimization for JSX spread | 1 | -0/+11 | ||
2022-03-06 | 1.7x faster sourcemap printing | 1 | -24/+32 | ||
2022-03-06 | source maps work for app code in `bun dev`! | 17 | -152/+1090 | ||
2022-03-05 | [JS Parser] dot property shorthand for JSX | 1 | -9/+28 | ||
This is a non-standard backwards-compatible feature that I suspect other tooling will soon adopt (and expect to help other tooling adopt it) ```jsx var hello = {hi: 'yo'}; export const Foo = () => <Bar {hello.hi} /> ``` Desugars into: ```jsx var hello = {hi: 'yo'}; export const Foo = () => <Bar hi={hello.hi} /> ``` This works with defines and macros too. ```jsx export const Foo = () => <Bar {process.env.NODE_ENV} /> ``` ```jsx export const Foo = () => <Bar NODE_ENV="development" /> ``` | |||||
2022-03-05 | Begin implementing sourcemaps | 1 | -0/+554 | ||
2022-03-04 | [JS Parser] Support JSX prop punning | 1 | -4/+40 | ||
2022-03-04 | [bun.js] Add `atob` and `btoa` | 1 | -2/+79 | ||
2022-03-04 | Update analytics_thread.zig | 1 | -2/+2 | ||
2022-03-04 | reduce number of global symbols | 1 | -64/+64 | ||
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() | 6 | -276/+439 | ||
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 | 2 | -21/+31 | ||
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 | 1 | -12/+16 | ||
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 | ||