Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-03-13 | make headers a ptrjarred/htmlrewriter | 1 | -20/+21 | ||
2022-03-13 | Add finalizers | 1 | -7/+19 | ||
2022-03-13 | [bun.js] Implement `Blob` | 16 | -626/+1419 | ||
2022-03-12 | Update string-handling.zig | 1 | -19/+12 | ||
2022-03-12 | [Bun.js] Support async HTMLRewriter | 2 | -78/+166 | ||
2022-03-12 | Expose `Response.prototype.headers` and `Response.prototype.clone` | 1 | -0/+32 | ||
2022-03-12 | Headers.clone | 1 | -0/+37 | ||
2022-03-12 | Response.clone() | 1 | -12/+90 | ||
2022-03-12 | Implement iterator | 1 | -22/+131 | ||
2022-03-12 | [Bun.js] Implement `HTMLRewriter` | 16 | -148/+2008 | ||
https://developers.cloudflare.com/workers/runtime-apis/html-rewriter | |||||
2022-03-11 | skeleton | 6 | -0/+429 | ||
2022-03-11 | fix bug with freeing typed arrays | 1 | -5/+6 | ||
2022-03-11 | Source Maps for client-side errors & columns | 15 | -171/+331 | ||
2022-03-10 | twiddle with formatting | 3 | -30/+89 | ||
2022-03-10 | [bun.js] Map the sources when handling the error | 1 | -29/+169 | ||
2022-03-10 | Update comptime_string_map.zig | 1 | -1/+1 | ||
2022-03-10 | [bun.js] Support sourcemaps! | 3 | -89/+78 | ||
2022-03-10 | Update js_printer.zig | 1 | -15/+42 | ||
2022-03-10 | WIP sourcemap parsing | 1 | -11/+265 | ||
2022-03-10 | woops | 1 | -1/+1 | ||
2022-03-10 | console.log(<JSX>) support | 11 | -371/+706 | ||
2022-03-09 | Update linker.zig | 1 | -12/+12 | ||
2022-03-09 | 69% perf improvement for long string literals | 3 | -82/+132 | ||
2022-03-09 | Update options.zig | 1 | -1/+1 | ||
2022-03-09 | make the map slightly smaller | 2 | -94/+108 | ||
2022-03-09 | [JS Printer] Add function for printing a string as JSON | 1 | -0/+104 | ||
2022-03-09 | 10% perf improvement to JSX entity code parsing in microbenchmark | 2 | -284/+269 | ||
2022-03-09 | fix bug with UTF-16 template literal escape codes | 1 | -6/+6 | ||
2022-03-08 | Fix quoting console.log | 3 | -42/+203 | ||
2022-03-08 | print size of headers | 2 | -12/+20 | ||
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 | ||