Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-06 | Fix overflow | 1 | -1/+1 | ||
2023-05-06 | :nail_care: | 1 | -8/+4 | ||
2023-05-06 | Fixes #2811 | 1 | -2/+2 | ||
2023-05-06 | [minifier] Rewrite equality check logic | 2 | -27/+127 | ||
2023-05-06 | Fix several transpiler tests | 1 | -1/+1 | ||
2023-05-06 | Fixes https://github.com/oven-sh/bun/issues/2810 | 1 | -2/+2 | ||
2023-05-06 | Cleanup some of the log-related code | 1 | -15/+28 | ||
2023-05-06 | [Bun.build] Add error when an `onResolve` plugin returns a `namespace` which ↵ | 2 | -7/+21 | ||
has no loader | |||||
2023-05-06 | fix crash when there are lots of build errors | 1 | -3/+4 | ||
2023-05-06 | Fix `make headers` | 1 | -0/+5 | ||
2023-05-06 | Fix `make headers` | 1 | -0/+3 | ||
2023-05-06 | Fix a memory leak | 1 | -0/+1 | ||
2023-05-06 | Another .isFile() | 1 | -1/+1 | ||
2023-05-06 | Clone the logs more | 2 | -6/+13 | ||
2023-05-06 | Use `isFile()` helper | 4 | -6/+10 | ||
2023-05-05 | [napi] Fix crash in `napi_create_external_buffer` | 2 | -5/+5 | ||
This impacted LightningCSS when garbage collection ran. cc @devongovett | |||||
2023-05-05 | Fix bug where the `Bun.file()` returned by `Bun.build()` would have an ↵ | 1 | -1/+8 | ||
incorrect path | |||||
2023-05-05 | Cleanup how some of the server components stuff works | 3 | -117/+179 | ||
2023-05-04 | fix source map line offsets (#2791) | 5 | -52/+116 | ||
* find codepoint at `i` * fix allocator usage * missing comment * switch to `Cursor` iterator | |||||
2023-05-04 | Add `UNLIKELY` | 1 | -2/+2 | ||
2023-05-04 | Revert "Add `setNoDelay`" | 1 | -4/+2 | ||
This reverts commit 8b6dd0c7e1c78a37da693dc216b18f32caa61927. | |||||
2023-05-04 | Throw error on non-file url | 1 | -1/+11 | ||
2023-05-04 | Add `setNoDelay` | 1 | -2/+4 | ||
2023-05-04 | Add no-op for ClientRequest.{setNoDelay,setTimeout} | 1 | -0/+9 | ||
2023-05-04 | parse and visit catch body scope (#2796) | 2 | -10/+15 | ||
2023-05-03 | Fix code splitting for server components | 3 | -176/+412 | ||
2023-05-03 | Clean up edgecase causing plugins to be called too many times | 1 | -4/+4 | ||
2023-05-03 | re-enable our CJS optimization | 2 | -5/+9 | ||
2023-05-03 | Implement synthetic default export | 2 | -119/+205 | ||
2023-05-02 | add deoptimization | 1 | -1/+1 | ||
2023-05-02 | `entry_point_kinds` only at `source_index` | 1 | -11/+9 | ||
2023-05-02 | Add missing function | 1 | -1/+16 | ||
2023-05-02 | Small refactor | 1 | -22/+21 | ||
2023-05-02 | Visit the runtime | 1 | -0/+4 | ||
2023-05-02 | Add helper fn | 2 | -4/+10 | ||
2023-05-02 | Fix checking for dynamic exports (#2792) | 1 | -4/+5 | ||
* only look at import records for the current source index * skip `source_index` when it is invalid * iterate `export_star_records` at `source_index` * comment | |||||
2023-05-02 | alignment | 2 | -4/+11 | ||
2023-05-02 | Add `__ulock_wait2` polyfill | 1 | -0/+24 | ||
cc @kzc | |||||
2023-05-02 | fix spacing | 1 | -8/+8 | ||
2023-05-02 | Use pretty | 1 | -1/+1 | ||
2023-05-01 | Fix a couple spltiting bugs | 2 | -22/+64 | ||
2023-05-01 | Compress `let f; f=123` => `let f = 123;` | 1 | -0/+27 | ||
2023-05-01 | Small improvement to minifier | 2 | -114/+118 | ||
2023-05-01 | Fixes #2783 | 1 | -2/+3 | ||
2023-05-01 | Update bundle_v2.zig | 1 | -1/+1 | ||
2023-05-01 | Fix some splitting bugs | 3 | -15/+18 | ||
2023-05-01 | Fix another crash | 1 | -2/+2 | ||
2023-05-01 | Fix crash | 1 | -1/+4 | ||
2023-04-30 | Bun Test matchers even/odd. Also, .toContains fix and truthy (#2754) | 7 | -3/+203 | ||
* bun test matcher tests for even/odd, few more truthy tests, and fix for contains empty string * implementation of even/odd matchers * didn't add the codegen bindings * linted | |||||
2023-04-30 | FIx esm -> cjs require interop with converted CJS | 1 | -1/+1 | ||
TODO: make `default` namespace object for these not load the entire wrapper |