Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-02-27 | Fix https://github.com/Jarred-Sumner/bun/issues/115 | 2 | -16/+17 | ||
2022-02-27 | [TS Parser] Implement `constructor(private foo)` | 1 | -1/+70 | ||
Input: ``` class Foo { constructor(public bar: string = "baz") {} bar: number; } ``` Output: ``` class Foo { bar; constructor(bar = "baz") { this.bar = bar; } baz; } ``` | |||||
2022-02-27 | typegenerator | 5 | -89/+139 | ||
2022-02-27 | Update jsc.zig | 1 | -0/+3 | ||
2022-02-27 | [JS Printer] Fix edgecase with optional chaining, class static block ↵ | 1 | -56/+86 | ||
initialization and private identifiers | |||||
2022-02-27 | [JS Parser] AST changes for class static block & private identifiers | 1 | -5/+27 | ||
2022-02-27 | [JS Parser] Fix bug with unicode identifiers | 2 | -31/+142 | ||
2022-02-27 | [JS Parser] #privateIdentifiers | 1 | -105/+279 | ||
2022-02-27 | [JS Parser] Class Static Initialization Blocks | 1 | -0/+62 | ||
https://github.com/tc39/proposal-class-static-block | |||||
2022-02-27 | [TS Parser] Support `export {type Foo}` | 1 | -13/+101 | ||
2022-02-25 | Update cli.zigbun-v0.0.71 | 1 | -2/+2 | ||
2022-02-25 | bump target nextjs version | 1 | -1/+1 | ||
2022-02-25 | [bun pm] add help menu | 1 | -4/+22 | ||
2022-02-25 | Fix alignment bug with `bun --help` | 1 | -1/+1 | ||
2022-02-25 | hopefully no more unnecessary git status | 1 | -0/+0 | ||
2022-02-25 | [bun install] Add metadata hash | 7 | -10/+256 | ||
2022-02-24 | [bun install] Skip saving the lockfile if there are no changes | 1 | -10/+28 | ||
2022-02-24 | Update WebKit | 1 | -0/+0 | ||
2022-02-24 | Update generated versions | 1 | -2/+2 | ||
2022-02-24 | [bun dev] Don't log errors twice | 1 | -1/+0 | ||
2022-02-24 | [bun dev] Fix bug with not transpiling files at the root | 1 | -12/+34 | ||
2022-02-24 | [bun.js] Implement `process.exit` (no callbacks yet) | 2 | -0/+29 | ||
2022-02-24 | [bun install] Print correct bin name | 1 | -1/+1 | ||
2022-02-24 | Add WASM modules but disable it for now | 23 | -133/+497 | ||
2022-02-24 | fix test failure in path.resolve | 1 | -2/+6 | ||
2022-02-24 | Update javascript.zig | 1 | -1/+110 | ||
2022-02-24 | [bun.js] Add `ShadowRealm` | 3 | -1/+29 | ||
2022-02-24 | Use a JSFinalobject for Path | 2 | -81/+42 | ||
2022-02-24 | Expose TextEncoder & TextDecoder globally | 3 | -20/+750 | ||
2022-02-24 | [Web Platform] Implement TextEncoder & TextDecoder | 11 | -278/+916 | ||
2022-02-24 | move GCDeferralContext | 2 | -18/+24 | ||
2022-02-24 | [JS Parser] ensure assertions are never run at runtime | 1 | -13/+18 | ||
2022-02-24 | misc cleanup | 1 | -2/+3 | ||
2022-02-22 | Make format consistent with WebKit | 20 | -3596/+4110 | ||
2022-02-22 | Fix assertion in JSPrinter | 1 | -1/+1 | ||
2022-02-22 | Use clang-format from webkit so it's consistent | 1 | -20/+103 | ||
2022-02-21 | Move lockfile into separate file | 2 | -2795/+2878 | ||
2022-02-21 | Wrap some usages of `assert` in a conditional | 11 | -31/+36 | ||
See https://github.com/ziglang/zig/issues/10942 | |||||
2022-02-21 | Update javascript.zig | 1 | -0/+73 | ||
2022-02-21 | upgrade to latest JSC | 3 | -2/+2 | ||
2022-02-21 | upgrade JSC | 12 | -87/+96 | ||
2022-02-20 | [bun dev] Implement copy as markdown | 1 | -2/+50 | ||
2022-02-20 | add version to Framework struct | 2 | -0/+11 | ||
2022-02-20 | [JSON] Implement a way to convert any Zig type to a JSON object | 1 | -0/+153 | ||
2022-02-20 | Update mime_type.zig | 1 | -0/+4 | ||
2022-02-20 | [bun dev] Implement `/bun:info` endpoint | 1 | -0/+51 | ||
This returns metadata for bun | |||||
2022-02-20 | [bun dev] Implement open in editor for transpiled files | 3 | -40/+117 | ||
2022-02-18 | Mention behavior | 1 | -0/+1 | ||
2022-02-18 | Add a way to specify an editor in bunfig.toml | 1 | -1/+13 | ||
2022-02-18 | Update base.zig | 1 | -14/+194 | ||