Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-04 | Revert "Add `setNoDelay`" | 1 | -4/+2 | ||
This reverts commit 8b6dd0c7e1c78a37da693dc216b18f32caa61927. | |||||
2023-05-04 | Throw error on non-file url | 2 | -1/+24 | ||
2023-05-04 | Add `setNoDelay` | 1 | -2/+4 | ||
2023-05-04 | Add no-op for ClientRequest.{setNoDelay,setTimeout} | 1 | -0/+9 | ||
2023-05-04 | Only checkout test folder for ecosystem tests | 1 | -2/+2 | ||
2023-05-04 | Actually fix the `git clone` URL | 1 | -1/+1 | ||
2023-05-04 | Use HTTPS instead of SSH for `git clone` in ecosystem tests | 1 | -1/+1 | ||
2023-05-04 | Fix working directory of GitHub action | 1 | -1/+2 | ||
2023-05-04 | Add initial ecosystem tests (#2801) | 23 | -707/+3319 | ||
* Add initial ecosystem tests * Run ecosystem tests every morning, after canary release | |||||
2023-05-04 | parse and visit catch body scope (#2796) | 2 | -10/+15 | ||
2023-05-03 | Fix code splitting for server components | 4 | -176/+419 | ||
2023-05-03 | Clean up edgecase causing plugins to be called too many times | 1 | -4/+4 | ||
2023-05-03 | Fix broken test | 1 | -1/+1 | ||
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 | Fix test | 1 | -7/+7 | ||
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-05-01 | Add StricJS to ecosystem (#2747) | 2 | -1/+41 | ||
* Create stric.md * Update nav.ts * Update stric.md Add codetabs for ArrowJS * Update stric.md * Update stric.md | |||||
2023-05-01 | Fix error links in markdown summary | 1 | -8/+9 | ||
2023-05-01 | Condense errors in test runner script | 2 | -6/+9 | ||
2023-04-30 | Add missing type for sqlite (#2764) | 1 | -0/+84 | ||
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-30 | Bun Test matchers even/odd. Also, .toContains fix and truthy (#2754) | 8 | -3/+362 | ||
* 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 | |||||
2023-04-30 | Fix garbled line text in some errors | 2 | -6/+23 | ||
2023-04-30 | Update options.zig | 1 | -3/+3 | ||
2023-04-30 | Fix missing imports in DCE tests | 1 | -5/+5 | ||
2023-04-30 | Fix missing "default" export condition | 1 | -0/+2 | ||
2023-04-30 | Implement source maps (#2770) | 14 | -210/+1100 | ||
* wip * Begin computing source map tables * source map progress * external source maps * fix merge * remove `@as` coercion * inline source maps and output source map shifts * fix `codeWithSourceMapShifts()` after merge * remove second call to `findReachableFiles()` * use `worker.allocator`, remove comment * don't reuse memory for source and sourceContents * don't reuse `quote_buf` * fix writing to stdout * Add comment * Don't include a sourcemap if the text was empty * Make the parser faster * +16% faster sourcemap generation @dylan-conway I'll need you to look this over to make sure I didn't mess anything up Though it currently doesn't generate the offsets in the right order... * 30% performance improvement to Bun.build() * Print `debugId` in source maps cc @mitsuhiko @notzeeg --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-30 | test default condition (#2776) | 2 | -2/+52 | ||
2023-05-01 | [install] handle `devDependencies` of local folders (#2781) | 4 | -65/+133 | ||
fixes #2653 | |||||
2023-04-30 | prevent crash | 1 | -2/+2 | ||
2023-04-30 | [install] handle repeated install of GitHub dependency correctly (#2780) | 2 | -96/+420 | ||
fixes #2602 |