Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-29 | wip treeshake nested namespace importsjarred/export-star-flat | 3 | -8/+123 | ||
It doesn't handle several important edgecases. I don't think this code is currently in the right place. | |||||
2023-04-28 | bundler tests: rest of default.test.ts and starting jsx tests (#2765) | 40 | -776/+1399 | ||
2023-04-28 | fix several memory issues related to plugins | 2 | -23/+27 | ||
2023-04-28 | cargo cult some code from JSC | 2 | -6/+7 | ||
2023-04-28 | Fix race condition | 2 | -2/+50 | ||
2023-04-28 | Update bun-test.yml | 1 | -1/+1 | ||
2023-04-28 | move this | 4 | -1/+1 | ||
2023-04-28 | Add a comment | 1 | -19/+54 | ||
2023-04-28 | Improve test runner markdown | 2 | -67/+107 | ||
2023-04-28 | [resolver] Propagate module type from package.json `"exports"` when possible | 2 | -5/+33 | ||
2023-04-28 | Fix crash with invalid input in fetch() | 1 | -2/+14 | ||
2023-04-28 | Improves Body.Value life cycle and Signal life cycle on server.zig (#2752) | 12 | -227/+331 | ||
* reestruct request body value and signal * revert react-hello-world * fix constructInto and test * fmt * fix body nullable * Request can outlive RequestContext * fmt * BodyValue is now HiveRef * hasDecl for Ref and HiveRef * fix deinit call on Ref/HiveRef * adds InlineBlob * fix Bun.inspect when using InlineBlob * revert InlineBlob * Fix mimalloc-debug * Add TODO note * fix: make node:crypto Hash.copy work correctly (#2761) This commit will also: - add a CryptoHasher.copy function - make CryptoHasher.digest reset the hasher so it can be reused Resolves #2651 * :nail_care: * address unicode issue (#2763) * Fix an oopsie * Another oopsie * use inline for * Fixup --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> * Request can outlive RequestContext * fmt * garantee to have the abort signnal attached to the server before abort the client on bun-server test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Silver <14016168+silversquirl@users.noreply.github.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> | |||||
2023-04-28 | Use global allocator tsconfig.json | 1 | -3/+6 | ||
2023-04-28 | Use setup-bun instead | 1 | -12/+15 | ||
2023-04-28 | Fix path of bun in workflow, try 3 | 1 | -1/+1 | ||
2023-04-28 | Fix path of bun in workflow, try 2 | 1 | -2/+1 | ||
2023-04-28 | Fix path of bun in workflow | 1 | -1/+2 | ||
2023-04-28 | Use GITHUB_PATH instead of cp | 1 | -1/+1 | ||
2023-04-28 | Maybe fix test runner on macOS | 1 | -2/+2 | ||
2023-04-28 | Improve test workflow | 3 | -39/+56 | ||
2023-04-28 | Fix typo in runner | 1 | -1/+1 | ||
2023-04-28 | Use bun x instead of bunx | 1 | -1/+1 | ||
2023-04-28 | Fix manual test workflow | 1 | -2/+1 | ||
2023-04-28 | Use Node.js APIs for test runner | 3 | -17/+28 | ||
2023-04-28 | New test runner with better Github integration | 2 | -20/+634 | ||
2023-04-28 | Bundler docs updates + support for `naming` string (#2767) | 5 | -252/+394 | ||
* Bundler docs updates * Remove comments * Updates * Fix bunx usages * Add info about metafile | |||||
2023-04-27 | address unicode issue (#2763) | 3 | -19/+17 | ||
* Fix an oopsie * Another oopsie * use inline for * Fixup --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-27 | :nail_care: | 2 | -15/+4 | ||
2023-04-27 | fix: make node:crypto Hash.copy work correctly (#2761) | 12 | -8941/+7815 | ||
This commit will also: - add a CryptoHasher.copy function - make CryptoHasher.digest reset the hasher so it can be reused Resolves #2651 | |||||
2023-04-27 | Add TODO note | 1 | -0/+2 | ||
2023-04-27 | Fix mimalloc-debug | 1 | -3/+3 | ||
2023-04-27 | Remove extra word in docs/index.md (#2758) | 1 | -1/+1 | ||
2023-04-27 | Implement `outdir` in `Bun.build` | 8 | -26/+362 | ||
2023-04-27 | Don't preallocate unless its profitable | 5 | -40/+45 | ||
2023-04-27 | Add microbenchmark | 1 | -0/+42 | ||
2023-04-27 | very slightly faster open() and writeFileSync() (#2759) | 4 | -45/+185 | ||
* Make open() slightly faster on macOS * Support using `writeFileSync` from native code * Add `openat$NOCANCEL` symbol * fixups for linux * do benchmark --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-26 | more esbuild compat | 1 | -7/+8 | ||
2023-04-26 | Wrap some things in minify_syntax flag | 1 | -31/+34 | ||
2023-04-26 | Inline spreads of array literals | 2 | -0/+52 | ||
2023-04-26 | bundler tests! (#2741) | 7 | -386/+548 | ||
* bundler tests! * tests | |||||
2023-04-26 | Use Ninja to build mimalloc and gitignore test/bun.lockb (#2750) | 2 | -2/+5 | ||
* build: use ninja to build mimalloc This is both faster than make, and ensures the same generator is always used, even when CMAKE_GENERATOR exists in the environment. * chore: gitignore test/bun.lockb | |||||
2023-04-26 | ensure `super()` is not merged with adjacent statements (#2757) | 2 | -5/+18 | ||
* ensure `super()` is not merged with adjacent statements * add TODO | |||||
2023-04-26 | Fixes #2746 (#2748) | 3 | -2/+20 | ||
* Fixes #2746 * add test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-26 | fix (#2756) | 1 | -1/+1 | ||
2023-04-26 | docs hotfix (#2755) | 1 | -2/+2 | ||
2023-04-26 | Add bundler documentation (#2753) | 6 | -13/+1233 | ||
* WIP * WIP * WIP * Document API * Updates * Polish bundler docs * Tweaks * Tweak | |||||
2023-04-26 | Basic types for Bun.build (#2713) | 1 | -5/+46 | ||
* Basic types for Bun.build * Tweaks * Updates | |||||
2023-04-26 | Implement `file` loader in `Bun.build` (#2745) | 5 | -41/+319 | ||
* Update bundle_v2.zig * Implement `file` loader * Hash in parallel * Implement `publicPath` * simplify * Update bundle_v2.zig * Implement `#!` * Remove unnecessary optional --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-25 | Update outdated help | 1 | -1/+1 | ||
2023-04-25 | Fix assertion failure | 1 | -1/+1 | ||
reproduces if building Three.js 10 times in runtime |