aboutsummaryrefslogtreecommitdiff
path: root/src/cli (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-07-05Change fish path addition commandGravatar addy 1-2/+2
2022-07-05[create] Don't print timestamp because it formats weirdGravatar Jarred Sumner 1-3/+0
2022-07-02[streams] Rename `drain()` -> `flush()`Gravatar Jarred Sumner 1-2/+2
2022-07-01update cli comment to match the create next app instructionsGravatar Koka Easwarendra 1-1/+1
2022-06-22change the directory structurejarred/renameGravatar Jarred Sumner 7-7/+7
2022-06-22Tweak test runner outputGravatar Jarred Sumner 1-90/+44
2022-06-22Update test_command.zigGravatar Jarred Sumner 1-23/+120
2022-05-30Improve error messages when you mistype commands/files/scriptsGravatar Jarred Sumner 1-4/+17
2022-05-05E.String gets a RopeGravatar Jarred Sumner 1-26/+26
2022-04-16Move some code around + delete dead codeGravatar Jarred Sumner 2-9/+3
2022-04-04fix bug with io sometimes sleeping permanetlyGravatar Jarred SUmner 1-0/+3
2022-03-30Bump target next version to 12.1.3Gravatar Jarred Sumner 1-1/+1
2022-03-18[bun install] Do not set an `$npm_config_prefix`Gravatar Jarred Sumner 1-8/+0
2022-03-18[bun run] fix missing spaceGravatar Jarred Sumner 1-1/+1
2022-03-17query_string_map -> urlGravatar Jarred Sumner 3-3/+3
2022-03-14Switch to std.HashMap for DirEntry storeGravatar Jarred Sumner 2-9/+11
2022-03-14fix crash in `bun create`Gravatar Jarred Sumner 1-3/+4
2022-03-08rename _global -> bunGravatar Jarred Sumner 11-133/+133
2022-03-07source maps optimizationsGravatar Jarred Sumner 1-5/+2
2022-03-06source maps work for app code in `bun dev`!Gravatar Jarred Sumner 1-2/+2
2022-03-04upgrade zigjarred/upgrade-zig-2Gravatar Jarred Sumner 4-17/+16
2022-03-02mark more things as unreachableGravatar Jarred Sumner 1-0/+2
2022-03-02[bun run] Set more environment variablesGravatar Jarred Sumner 1-0/+31
2022-03-02add `bun pm cache` and `bun pm cache rm` commandsGravatar Jarred Sumner 1-0/+20
2022-02-27WASMGravatar Jarred Sumner 7-18/+18
2022-02-27[JSON] Use UTF-8 JSON parser when it's not for JavaScriptGravatar Jarred Sumner 2-2/+2
2022-02-25bump target nextjs versionGravatar Jarred Sumner 1-1/+1
2022-02-25[bun pm] add help menuGravatar Jarred Sumner 1-4/+22
2022-02-25[bun install] Add metadata hashGravatar Jarred Sumner 3-0/+88
2022-02-15Update test_command.zigGravatar Jarred Sumner 1-1/+1
2022-02-12Update package_manager_command.zigGravatar Jarred Sumner 1-1/+5
2022-02-12[bun install] `bun pm bin` prints the bin directoryGravatar Jarred Sumner 1-6/+40
2022-02-11`std.os.`exit -> `Global.exit` so stderr is always flushedGravatar Jarred Sumner 7-61/+61
2022-02-10[bun run] Fix exit code when running a binGravatar Jarred Sumner 1-1/+1
2022-02-10[bun run] Fix exit code when script failsGravatar Jarred Sumner 1-1/+2
2022-02-05Handle promise rejections in testsGravatar Jarred Sumner 1-9/+12
2022-02-04Update test_command.zigGravatar Jarred Sumner 1-2/+0
2022-02-03[bun test] Support multiple filesGravatar Jarred Sumner 1-2/+12
2022-01-29cleanupGravatar Jarred Sumner 1-1/+1
2022-01-28Update AST layout to store capacity for itemsGravatar Jarred Sumner 1-33/+32
We want to be able to push to the list
2022-01-27[bunfig] Implement config file formatGravatar Jarred Sumner 1-1/+10
2022-01-23Improve error message when `bun upgrade` failsGravatar Jarred Sumner 1-1/+1
2022-01-19`fs.*Sync()`, `bun wiptest`, and More ™ (#106)Gravatar Jarred Sumner 3-7/+411
* 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}
2022-01-05Fix crash that sometimes happens after 30 secondsGravatar Jarred Sumner 2-7/+9
2022-01-05we want the opposite of thisGravatar Jarred Sumner 1-1/+0
2022-01-04[bun bun] Fix error when regenerating node_modules.bun after moving itGravatar Jarred Sumner 1-1/+17
I think @alii reported this awhile ago
2022-01-04Improve how we detect if terminal colors are supportedGravatar Jarred Sumner 1-1/+2
2022-01-03dead codeGravatar Jarred Sumner 3-6/+0
2022-01-03[bun upgrade] Free memory after checking for updates finishesGravatar Jarred SUmner 1-1/+4
2022-01-02Update upgrade_command.zigGravatar Jarred Sumner 1-0/+1