Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-10-04 | Fix moving files across mount points | 2 | -1/+29 | ||
2021-10-04 | Improve Bun's performance by 5% | 5 | -54/+41 | ||
By making E.Identifier not a pointer, we improve performance by 5%. Heap allocations are bad | |||||
2021-10-03 | Bump | 1 | -0/+0 | ||
2021-10-03 | Update linux build instructions | 1 | -0/+0 | ||
2021-10-03 | Fix various macOS-specific compile errors and run `zig fmt` | 11 | -2114/+3130 | ||
2021-10-03 | 1% perf improvements on Linuxjarred/linux | 3 | -41/+80 | ||
2021-10-03 | Add Three.js benchmark | 3 | -3/+3 | ||
2021-10-02 | Linux works now. | 11 | -74/+141 | ||
2021-10-01 | Add support for INotify-based filesystem watcher | 3 | -67/+272 | ||
2021-10-01 | Merge branch 'jarred/linux' of github.com:Jarred-Sumner/bun into jarred/linux | 5 | -1178/+13 | ||
2021-10-01 | Build stuff | 5 | -1178/+13 | ||
2021-10-01 | Bump webkit | 1 | -0/+0 | ||
2021-10-01 | Split out the macOS specific parts | 4 | -207/+238 | ||
2021-09-30 | Bump version | 1 | -1/+1 | ||
2021-09-30 | runtime.version | 1 | -1/+1 | ||
2021-09-30 | Pass MacroContext in more places | 1 | -0/+16 | ||
2021-09-30 | Pass macro_context when appropriate. This needs to be refactored more. | 1 | -1/+7 | ||
2021-09-30 | Make sure VM initializes with `BUN_`* defines | 1 | -0/+5 | ||
2021-09-30 | Fix edgecase with cjs -> esm interop runtime code when module.exports was ↵ | 1 | -18/+11 | ||
marked as not extensible | |||||
2021-09-30 | Fix potential infinite loop on calling macros | 1 | -14/+20 | ||
2021-09-30 | Fix jsxDEV transform bug that occurred when not including `source` and the ↵ | 1 | -1/+10 | ||
component rendered an exception | |||||
2021-09-30 | Fix dead-code elimination edgecase with call expressions | 1 | -6/+9 | ||
2021-09-30 | Fix edgecase with parsing .env | 1 | -1/+1 | ||
2021-09-30 | Support remapping macro paths | 9 | -83/+343 | ||
2021-09-30 | Fix all the compile errors | 3 | -133/+210 | ||
2021-09-30 | Wire up macro-injected imports and move some structs above the gigantic ↵ | 3 | -430/+538 | ||
parser type to reduce bun compile time a little | |||||
2021-09-30 | flatten fragments | 1 | -3/+27 | ||
2021-09-29 | Most of the code & API changes necessary for supporting Relay (GraphQL) | 3 | -14/+423 | ||
2021-09-27 | () | 1 | -1/+1 | ||
2021-09-27 | Ignore leading invalid unicode characters in response bodies in Response.text() | 2 | -4/+10 | ||
2021-09-27 | Access object properties from macros | 2 | -4/+128 | ||
2021-09-27 | Fix bug in string eql check that was never used before | 1 | -1/+1 | ||
2021-09-27 | `u16` isn't big enough | 2 | -6/+10 | ||
2021-09-27 | Pass User-Agent in fetch() by default (but allow overriding) | 2 | -5/+26 | ||
2021-09-27 | Fix bug in URL parser | 1 | -12/+39 | ||
2021-09-27 | Fix typo in error | 1 | -1/+1 | ||
2021-09-27 | Set macros enabledjarred/ast-again | 1 | -1/+1 | ||
2021-09-27 | Bundling ignores macros | 1 | -14/+22 | ||
2021-09-27 | bounds checking | 1 | -1/+1 | ||
2021-09-26 | Allow nested arrays | 2 | -27/+105 | ||
2021-09-26 | Fix getting object properties | 3 | -25/+63 | ||
2021-09-26 | Update `Bun.readFileAsBytes` and `Bun.readFile` to also accept an array of ↵ | 1 | -91/+143 | ||
filepaths to join For example: ``` Bun.readFileAsString([Bun.main, "../pages/hi.tsx"]); ``` | |||||
2021-09-26 | Add `JSArrayIterator`, don't call JSC::Options after JSC already loaded once ↵ | 2 | -9/+41 | ||
(that causes a crash) | |||||
2021-09-26 | Most of macro implementation | 6 | -96/+612 | ||
2021-09-26 | Basic macro impl | 12 | -629/+1557 | ||
2021-09-25 | WIP | 3 | -107/+651 | ||
2021-09-25 | fix incorrect comment | 1 | -1/+1 | ||
2021-09-25 | Fix bug with resolving `"browser"` field in package.json | 1 | -1/+1 | ||
It was resolving from the parent directory of the result instead of the browser scope. | |||||
2021-09-25 | Fix lexing bug with the \f form feed character (used in Emotion & Styled ↵ | 1 | -1/+1 | ||
Components) | |||||
2021-09-25 | Fix crashing edgecase when both JSX automatic and JSX classic imports are ↵ | 1 | -28/+44 | ||
necessary and unbundled |