Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-04-17 | only if dir existsdylan/change-pathname-assert | 3 | -3/+13 | ||
2023-04-17 | make sure `with` is parsed as a block (#2680) | 2 | -6/+1 | ||
2023-04-17 | fix typescript decorators with index and number keys (#2677) | 2 | -2/+34 | ||
* handle index property key case * non-method number property * tests for property keys | |||||
2023-04-17 | docs: fix code block (#2662) | 1 | -1/+1 | ||
2023-04-17 | more | 1 | -0/+60 | ||
2023-04-17 | Get axios working (#2673) | 4 | -651/+709 | ||
* Revive node:http tests * Fix a couple bugs in node:http * possibly breaking: use `"browser"` exports condition last * Make URL validation error better --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-04-17 | cleanup | 1 | -4/+7 | ||
2023-04-17 | Fix access of inactive union field | 1 | -3/+4 | ||
2023-04-17 | Fixup options parsing | 1 | -22/+48 | ||
2023-04-17 | enable minify syntax by default in the runtime | 2 | -2/+3 | ||
2023-04-17 | Prepare for `Bun.build` | 10 | -10609/+12146 | ||
2023-04-17 | Fix dynamic require() | 1 | -0/+15 | ||
2023-04-17 | Fixes #2634 | 1 | -2/+2 | ||
2023-04-17 | Don't record named exports for deoptimized CJS | 1 | -6/+10 | ||
2023-04-17 | Deoptimize CJS more | 1 | -8/+6 | ||
2023-04-17 | Update bun.zig | 1 | -1/+1 | ||
2023-04-17 | `bun build` should write to stdout instead of stderr | 1 | -1/+1 | ||
@paperdave this probably breaks all your tests | |||||
2023-04-17 | DCE for some global constructor calls | 1 | -6/+10 | ||
2023-04-17 | Deoptimize CJS -> ESM transform on computed property access of `exports` object | 1 | -1/+10 | ||
Example: ```js for (var k in constants) { exports[k] = constants[k]; } ``` | |||||
2023-04-16 | Update bundle_v2.zig | 1 | -24/+10 | ||
2023-04-16 | Mark builtins as external for node and bun | 3 | -4/+8 | ||
2023-04-16 | Attempt to automatically handle some cyclical import issues with ESM | 2 | -0/+35 | ||
Fixes https://github.com/kysely-org/kysely/issues/412 | |||||
2023-04-16 | Fix for `ReferenceError: Cannot access uninitialized variable.` | 1 | -5/+8 | ||
2023-04-16 | Add some comments | 1 | -2/+24 | ||
2023-04-16 | Lazily wrap | 3 | -12/+24 | ||
2023-04-16 | Add temporary fix | 1 | -11/+57 | ||
2023-04-16 | Fix some edgecases with CJS -> ESM unwrapping | 1 | -1/+31 | ||
2023-04-16 | more bundler tests (#2670) | 8 | -350/+439 | ||
* tests! * run formatters | |||||
2023-04-16 | Fix test | 1 | -1/+1 | ||
2023-04-16 | fix: replace unknown link with bun docs (#2669) | 1 | -1/+1 | ||
2023-04-16 | Unwrap, but we broke code splitting | 9 | -89/+242 | ||
2023-04-16 | Update cli.zig | 1 | -2/+0 | ||
2023-04-16 | prepare for unwrapping | 10 | -94/+226 | ||
2023-04-16 | Fix bugs with loading `jsxDEV` when it should be `jsx` or vice versa | 5 | -61/+50 | ||
2023-04-16 | Rename `E.Require` -> `E.RequireString` and `E.RequireOrRequireResolve` -> ↵ | 1 | -37/+43 | ||
`E.RequireResolveString` | |||||
2023-04-15 | Delete some legacy bundling code | 1 | -88/+3 | ||
2023-04-15 | more work on bundler tests (#2667) | 18 | -215/+826 | ||
* Fix `make dev` reusing old .o file * more bundler tests * document capture * bundler tests * bundler tests * bundler tests * finish up * remove bad thing to merge on main | |||||
2023-04-15 | Add .txt loader docs | 1 | -13/+22 | ||
2023-04-15 | toBeFalsy expect counter and test scope check (#2661) | 1 | -1/+7 | ||
2023-04-15 | Handle more cases in length | 2 | -0/+19 | ||
2023-04-15 | Mostly implement cross-module constant inlining, but disable it | 7 | -70/+172 | ||
There are some test failures | |||||
2023-04-15 | Implement template string folding | 2 | -8/+146 | ||
@paperdave can you help write tests for this if not already covered? example: ```js if ( `${1}-${2}-${3}-${null}-${undefined}-${true}-${false}` === "1-2-3-null-undefined-true-false" ) { if ( "\uD83D\uDE0B \uD83D\uDCCB \uD83D\uDC4C".length === 8 && "😋📋👌".length === 6 ) { console.log(`such fold. very inline. wow.`); } } ``` | |||||
2023-04-15 | Fix failing to log error with `--transform` | 1 | -2/+11 | ||
2023-04-15 | Add error for assigning to a constant | 1 | -7/+29 | ||
2023-04-15 | Add unset function | 1 | -0/+7 | ||
2023-04-14 | Update bun.zig | 1 | -1/+1 | ||
2023-04-14 | Implement `--transform` CLI flag | 6 | -108/+63 | ||
2023-04-14 | Include the error return trace | 1 | -12/+30 | ||
2023-04-14 | Fix string concat | 1 | -1/+5 | ||
2023-04-14 | +6 more passing tests | 1 | -3/+6 | ||