aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-06-22change the directory structurejarred/renameGravatar Jarred Sumner 122-17121/+0
2022-05-05E.String gets a RopeGravatar Jarred Sumner 30-152/+85
2022-04-25some of bufferGravatar Jarred Sumner 2-25/+28
2022-04-23:camera:Gravatar Jarred Sumner 32-104/+136
2022-04-07:camera:Gravatar Jarred Sumner 29-77/+106
2022-03-20:camera:Gravatar Jarred Sumner 2-2/+2
2022-03-15:camera:Gravatar Jarred Sumner 60-799/+859
2022-03-10console.log(<JSX>) supportGravatar Jarred Sumner 36-1977/+2037
2022-03-08sourcemappingsGravatar Jarred Sumner 60-0/+120
2022-02-27:camera:Gravatar Jarred Sumner 5-13/+13
2022-02-27[TS Parser] Support `export {type Foo}`Gravatar Jarred Sumner 5-13/+13
2022-02-22snaspshotsGravatar Jarred Sumner 40-90/+110
2022-02-08:camera:Gravatar Jarred Sumner 6-2/+68
2022-02-04:camera:Gravatar Jarred Sumner 74-340/+669
2022-01-28Update AST layout to store capacity for itemsGravatar Jarred Sumner 38-162/+167
We want to be able to push to the list
2022-01-22:camera:Gravatar Jarred Sumner 39-78/+78
2022-01-22:camera:Gravatar Jarred Sumner 16-16/+32
2022-01-19`fs.*Sync()`, `bun wiptest`, and More ™ (#106)Gravatar Jarred Sumner 78-156/+156
* very very wip * almost ready to fix the errors * Update identity_context.zig * Update base.zig * [bun test] It runs successfully * Remove unnecessary call * [Bun.js] Improve JS <> Zig unicode string interop This fixes longstanding unicode bugs with `console.log` & `fetch`. I believe @evanwashere reported this first awhile ago * [Bun.js] Implement `Object.is()` binding and a way to set a timeout for script execution * Update PLCrashReport.zig * [Bun.js] Make `console.log` more closely match Node.js and Deno * [Bun.js] Implement formatting specifier for console.* * Implement `console.clear()` * bug fix * Support console.clear() * Buffer stderr * [bun test] Begin implementing Node.js `fs` * Update darwin_c.zig * Implement more of `fs` * `mkdir`, `mkdir` recursive, `mkdtemp` * `open`, `read` (and pread) * Move some things into more files * Implement readdir * `readFile`, `readLink`, and `realpath` * `writeFile`, `symlink`, `chown`, `rename`, `stat`, `unlink`, `truncate` * `lutimes` * Implement `SystemError` and begin wiring up the `fs` module * `"fs"` - Most of the arguments / validation * `fs` - Rest of the arguments / validations * Begin wiring up the `fs` module * Fix all the build errors * support printing typed arrays in console.log * It...works? * Support `require("fs")`, `import fs from 'fs';`, `import * as fs from 'fs'` * Fix a couple bugs * get rid of the crash reporter for now * Update fs.exports.js * [bun.js] slight improvement to startup time * [bun.js] Improve error message printing * [Bun.js] Add `Bun.gc()` to run the garbage collector manually and report heap size * [Bun.js] Add Bun.generateHeapSnapshot to return what JS types are using memory * [Bun.js] Add `Bun.shrink()` to tell JSC to shrink the VM size * Improve encoding reader * [bun.js] Improve callback & microtask performance * Update node_fs.zig * Implement `console.assert` * simple test * [Bun.js] Prepare for multiple globals/realms to support testing * Create callbacks-overhead.mjs * Update http.zig * [Bun.js] Implement `queueMicrotask` * Add test for queueMicrotask * :sleepy: * [Bun.js] Implement `process.versions`, `process.pid`, `process.ppid`, `process.nextTick`, `process.versions`, * Implement `process.env.toJSON()` * [Bun.js] Improve performance of `fs.existsSync` * :nail_care: * [Bun.js] Implement `process.chdir(str)` and `process.cwd()`, support up to 4 args in `process.nextTick` * Make creating Zig::Process lazy * Split processi nto separte file * [Bun.js] Node.js Streams - Part 1/? * [Bun.js] Node.js streams 2/? * WIP streams * fix crash * Reduce allocations in many places * swap * Make `bun` start 2ms faster * Always use an apiLock() * libBacktrace doesn't really work yet * Fix crash in the upgrade checker * Clean up code for importing the runtime when not bundling * :camera: * Update linker.zig * 68! * backtrace * no, really backtrace * Fix * Linux fixes * Fixes on Linux * Update mimalloc * [bun test] Automatically scan for {.test,_test,.spec,_spec}.{jsx,tsx,js,cts,mts,ts,cjs}
2021-12-30Upgrade to latest Zig, remove dependency on patched version of Zig (#96)Gravatar Jarred Sumner 8-8/+134
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md
2021-12-27:camera:bun-v0.0.60Gravatar Jarred Sumner 2-4/+4
2021-12-16:camera:bun-v0.0.55Gravatar Jarred Sumner 2-0/+80
2021-12-16:camera:bun-v0.0.53Gravatar Jarred Sumner 27-125/+132
2021-12-16:camera:Gravatar Jarred Sumner 30-129/+226
2021-11-15:camera: Snapshotsbun-v0.0.49Gravatar Jarred Sumner 6-2/+124
2021-11-08:camera:Gravatar Jarred Sumner 4-1/+23
2021-11-08[JS Printer] Fix bug with optional chainGravatar Jarred Sumner 3-0/+80
2021-11-06Debug snapshotsGravatar Jarred Sumner 3-661/+672
2021-11-05[resolver] Add test for `"exports"` field with a pattern `foo/*.js`Gravatar Jarred Sumner 1-0/+3
2021-11-05:camera: SnapshotsGravatar Jarred Sumner 2-661/+669
2021-11-05:camera: Snapshotsbun-v0.0.45Gravatar Jarred Sumner 6-8/+5672
2021-11-05:camera: SnapshotsGravatar Jarred Sumner 4-0/+5648
2021-11-04[JSX] Match esbuild behavior for multiline JSX string literalsGravatar Jarred Sumner 2-8/+8
2021-11-01Add Bun.js integration tests, but don't run them yet.Gravatar Jarred Sumner 12-166/+250
2021-10-25Add snapshots for latin1 regexp, add more codepoints to string escapesGravatar Jarred Sumner 10-8/+1912
2021-10-15:camera:Gravatar Jarred Sumner 2-2/+4
2021-10-06SnapshotsGravatar Jarred Sumner 10-23/+80
2021-10-06:camera:jarred/read-tsconfig-jsxGravatar Jarred Sumner 12-10/+271
2021-10-03Update linux build instructionsGravatar Jarred Sumner 24-60/+102
2021-10-031% perf improvements on Linuxjarred/linuxGravatar Jarred SUmner 22-66/+66
2021-09-30SnapshotsGravatar Jarred Sumner 8-36/+62
2021-09-27upgradeGravatar Jarred Sumner 6-30/+14
2021-09-25Snapshots & package.jsonGravatar Jarred Sumner 13-4/+519
2021-09-23:camera:Gravatar Jarred Sumner 38-386/+966
2021-09-22Switch to a single directory for storing snapshots and explicitly note whats ↵Gravatar Jarred Sumner 35-10/+708
a debug snapshot and a non-debug snapshot
2021-09-20Fix parsing/printing unicode identifiers, switch to UTF-8 for prefilled ↵Gravatar Jarred Sumner 2-0/+87
strings, remove eagerly loading identifier_name
2021-09-17SnapshotsGravatar Jarred Sumner 1-0/+41
2021-09-17Add test for tsx/ts fallback importsGravatar Jarred Sumner 2-0/+50
2021-09-17Fix test makefileGravatar Jarred Sumner 5-5/+5
2021-09-17Fix multiple imports to CJS modules when referencing via module_id hashGravatar Jarred Sumner 2-0/+50
2021-09-17global -> globalThisGravatar Jarred Sumner 1-0/+26