Age | Commit message (Expand) | Author | Files | Lines |
2023-09-01 | keep export star as (#4451) | Dylan Conway
| 1 | -14/+0 |
2023-08-24 | Disable minifying "str".length until https://github.com/oven-sh/bun/issues/42... | Jarred Sumner
| 1 | -4/+7 |
2023-08-24 | update zig to 0.11.0 (#4233) | Jason
| 1 | -19/+19 |
2023-08-23 | Fix `<const T>() =>` (#4278)bun-v0.8.0 | dave caruso
| 1 | -0/+3 |
2023-08-22 | fix yield (#4264) | dave caruso
| 1 | -1/+1 |
2023-08-20 | Implement `--inspect-brk` (#4222) | Jarred Sumner
| 1 | -0/+14 |
2023-08-18 | Remove most C API usages, add debugger pretty printers for `Headers`, `URLSea... | Jarred Sumner
| 1 | -126/+10 |
2023-08-11 | Deprecate loading `node_modules.bun` (#4131) | Jarred Sumner
| 1 | -651/+2 |
2023-08-11 | Support TypeScript's `export type * as Foo from 'bar'` (#4125) | Jarred Sumner
| 1 | -9/+30 |
2023-08-08 | Remove unintentional logs from #4043 | Jarred Sumner
| 1 | -69/+1 |
2023-08-07 | WASM test analyzer (#4043) | Jarred Sumner
| 1 | -5/+140 |
2023-08-06 | Bind require.resolve() (#4030) | Jarred Sumner
| 1 | -6/+38 |
2023-08-05 | Remove Bun.plugin transpiler hook, encourage usage of `--preload` instead (#3... | dave caruso
| 1 | -84/+0 |
2023-07-26 | fix decorator and declare (#3828) | Dylan Conway
| 1 | -1/+10 |
2023-07-21 | string escape edgecase (#3717)bun-v0.7.0 | Dylan Conway
| 1 | -1/+4 |
2023-07-20 | `resolveRopeIfNeeded` (#3708) | Dylan Conway
| 1 | -0/+1 |
2023-07-19 | set `did_panic` flag (#3687) | Dylan Conway
| 1 | -1/+5 |
2023-07-18 | zig upgrade (#3667) | Dylan Conway
| 1 | -34/+34 |
2023-07-08 | Handle case with TS decorators and export default anonymous class (#3578) | Jarred Sumner
| 1 | -1/+11 |
2023-07-08 | Fix bug with decorators not being generated in `export default class` (#3577) | Jarred Sumner
| 1 | -1/+12 |
2023-07-06 | Fixes #3537 (#3539) | Jarred Sumner
| 1 | -10/+41 |
2023-07-05 | don't unwrap react below version `18.0.0` (#3538) | Dylan Conway
| 1 | -5/+20 |
2023-06-29 | Fixes #3462 (#3465) | Jarred Sumner
| 1 | -0/+24 |
2023-06-29 | [bundler] avoid printing unnecessary declarations (#3456) | Dylan Conway
| 1 | -58/+16 |
2023-06-24 | Rewrite Bun's runtime CommonJS loader (#3379) | Jarred Sumner
| 1 | -26/+63 |
2023-06-21 | upgrade zig to `v0.11.0-dev.3737+9eb008717` (#3374) | Dylan Conway
| 1 | -55/+52 |
2023-06-20 | record jsx factory symbols in classic mode (#3360) | Dylan Conway
| 1 | -1/+7 |
2023-06-19 | Fix bug that breaks `bunx prisma init` when node is not installed (#3362) | Jarred Sumner
| 1 | -2/+35 |
2023-06-16 | don't remove const if referenced before declaration (#3337) | Dylan Conway
| 1 | -3/+3 |
2023-06-15 | Tweak CommonJS output (#3320) | Jarred Sumner
| 1 | -6/+8 |
2023-06-14 | Workaround issue with module.require = | Jarred Sumner
| 1 | -8/+64 |
2023-06-12 | handle unwrapping `require` in any expression (#3292) | Dylan Conway
| 1 | -5/+25 |
2023-06-09 | Fixes #3206 (#3262) | Jarred Sumner
| 1 | -47/+75 |
2023-06-09 | Implement mocks in bun:test (#3252) | Jarred Sumner
| 1 | -0/+2 |
2023-06-01 | Implement `__dirname` and `__filename`, allow direct eval in CommonJS (#3164) | Jarred Sumner
| 1 | -19/+27 |
2023-06-01 | only add cjs export name if it is assigned (#3159) | Dylan Conway
| 1 | -1/+1 |
2023-05-31 | don't rewrite `module.exports` if assign target is `update` or `replace` (#3147)bun-v0.6.6 | Dylan Conway
| 1 | -9/+16 |
2023-05-31 | set `optional_chain` instead of `optional_start` (#3142) | Dylan Conway
| 1 | -1/+1 |
2023-05-31 | `--no-macros` flag, disable macros in node_modules | Jarred Sumner
| 1 | -0/+23 |
2023-05-30 | [CommonJS] Handle `this` better | Jarred Sumner
| 1 | -5/+19 |
2023-05-29 | Natively support CommonJS at runtime (#3104) | Jarred Sumner
| 1 | -491/+570 |
2023-05-28 | Convert `module.exports = { foo: 'bar'}` to ESM in `bun build` (#3103) | Jarred Sumner
| 1 | -1/+164 |
2023-05-27 | Fixes #3091 (#3092) | Jarred Sumner
| 1 | -2/+0 |
2023-05-25 | avoid using null value | Dylan Conway
| 1 | -2/+4 |
2023-05-24 | Support `with { type: "macro"}` in `bun build` (#3059) | Jarred Sumner
| 1 | -6/+32 |
2023-05-24 | Load `.env.test`, set NODE_ENV=test in `bun test`, load `.env.{test,productio... | Jarred Sumner
| 1 | -7/+3 |
2023-05-24 | fix setting `jsxImportSource`, `jsxFactory`, and `jsxFragmentFactory` (#3057) | Dylan Conway
| 1 | -70/+24 |
2023-05-22 | only merge if kind is `var` | Dylan Conway
| 1 | -1/+4 |
2023-05-19 | make sure `key` is added to args (#2968) | Dylan Conway
| 1 | -9/+7 |
2023-05-18 | Fixes #2946 (#2949) | Jarred Sumner
| 1 | -1/+4 |