Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-29 | import everything from "bun" where possible | 1 | -7/+7 | ||
2022-10-06 | Add simple Hot Module Reloading to bun's runtime | 1 | -5/+2 | ||
2022-08-18 | Fix `bun:wrap` not loading | 1 | -20/+28 | ||
2022-08-03 | Add `process.revision` and expose git sha to builds | 1 | -4/+4 | ||
2022-07-22 | [bun dev] Add flag to force hmr | 1 | -3/+3 | ||
2022-07-10 | Remove unnecessary `Output.flush`s before `Global.exit` and `Global.crash` ↵ | 1 | -2/+0 | ||
(#535) * fix: add missing newline * refactor: std.process.exit -> Global.exit * fix: std.os.abort -> Global.exit I'm not sure about this one. Please verify. * cleanup: remove unnecessary `Output.flush`s | |||||
2022-07-09 | feat: update default favicon to new logo | 1 | -1/+1 | ||
2022-07-05 | mitigate HMR bug | 1 | -3/+3 | ||
2022-07-02 | Rename `defaultErrorHandler` to `runErrorHandler` | 1 | -2/+2 | ||
2022-06-22 | change the directory structurejarred/rename | 1 | -1/+1 | ||
2022-05-19 | [bun de] Fix crash when printing source maps | 1 | -11/+4 | ||
2022-05-19 | [wip] Solid.js support for Bun! | 1 | -0/+3 | ||
2022-04-18 | Fix wasm build | 1 | -3/+5 | ||
2022-04-11 | [bun.js] Add a `Server.stop` function | 1 | -2/+0 | ||
2022-04-11 | :scissors: dead code | 1 | -46/+12 | ||
2022-04-10 | make checking for bun modules a compile time step | 1 | -0/+2 | ||
2022-04-08 | Fix Next.js stylesheet bug | 1 | -2/+10 | ||
2022-04-08 | remove some code bloat | 1 | -19/+3 | ||
2022-04-05 | `[bun dev]` Fix segfaults | 1 | -30/+57 | ||
2022-03-31 | [bun dev] Re-create the shared buffer for each websocket | 1 | -6/+5 | ||
2022-03-24 | Implement error page for HTTP server | 1 | -135/+32 | ||
2022-03-17 | Move `Bun` to JSC.API | 1 | -2/+2 | ||
2022-03-17 | query_string_map -> url | 1 | -1/+1 | ||
2022-03-14 | Fix a couple memory leaks in `bun dev` | 1 | -25/+88 | ||
2022-03-14 | [bun dev] Fix crash on macOS | 1 | -0/+14 | ||
2022-03-11 | Source Maps for client-side errors & columns | 1 | -1/+12 | ||
2022-03-08 | rename _global -> bun | 1 | -26/+26 | ||
2022-03-07 | source maps optimizations | 1 | -10/+13 | ||
2022-03-06 | 1.7x faster sourcemap printing | 1 | -24/+32 | ||
2022-03-06 | source maps work for app code in `bun dev`! | 1 | -50/+184 | ||
2022-03-04 | upgrade zigjarred/upgrade-zig-2 | 1 | -4/+7 | ||
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` | 1 | -0/+9 | ||
2022-03-01 | cleanup code that checks if it should send an HTTP body | 1 | -6/+6 | ||
2022-02-27 | WASM | 1 | -6/+6 | ||
2022-02-24 | [bun dev] Fix bug with not transpiling files at the root | 1 | -12/+34 | ||
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 | 1 | -40/+115 | ||
2022-02-18 | [bun dev] Errors with file names can be opened in editor now | 1 | -2/+189 | ||
2022-02-18 | more mimalloc | 1 | -7/+8 | ||
2022-02-11 | `std.os.`exit -> `Global.exit` so stderr is always flushed | 1 | -3/+3 | ||
2022-02-10 | [bun dev] Use a Mimalloc Arena to attempt to resolve a crash when `bun dev` ↵ | 1 | -10/+13 | ||
has been running for awhile | |||||
2022-02-10 | [bun dev] Implement `hash:` namespace for `file` loader to improve browser ↵ | 1 | -3/+20 | ||
cache invalidation This appends a hash to URLs and import paths In `bun dev`, this means: `/foo.woff2` => `/hash:/foo.woff2` `bun dev` simply ignores this. | |||||
2022-02-04 | reminder | 1 | -3/+1 | ||
2022-02-04 | [bun dev] Fix bug with serving static files on next.js apps introduced in ↵ | 1 | -5/+7 | ||
af69b47c228783825e1bae9873dda878cf5bdebf | |||||
2022-02-03 | Move detectFastRefresh to later so HTTP request handler starts faster | 1 | -2/+1 | ||
2022-02-01 | [http] Fix assertion in favicon | 1 | -1/+2 | ||
2022-01-30 | [bun dev] Support HTML files in either project root or `public` folder ↵ | 1 | -28/+61 | ||
(`static`) | |||||
2022-01-29 | Embed a favicon when none exists | 1 | -0/+30 | ||
2022-01-29 | cleanup | 1 | -5/+32 | ||