Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-23 | darkenbun-v0.4.0 | 1 | -2/+2 | ||
2022-12-23 | add node_modules to bin path | 1 | -2/+2 | ||
2022-12-22 | Make `bun pm ls` only show top-level by default | 1 | -2/+29 | ||
2022-12-22 | `npx` -> `bunx` | 1 | -0/+14 | ||
2022-12-22 | fix finding package bin after install | 1 | -1/+1 | ||
2022-12-22 | don't log for ctrl + c | 1 | -4/+8 | ||
2022-12-21 | woops | 1 | -2/+2 | ||
2022-12-21 | [bunx] Install symlink with completions | 1 | -10/+65 | ||
@colinhacks lmk if you have ideas where else it should attempt to isntall: 1) same dir as `bun` 2) $BUN_INSTALL/bin/bunx 3) $HOME/.bun/bin/bunx 4) $HOME/.local/bin/bunx | |||||
2022-12-21 | [bunx] Make help a little prettier | 1 | -18/+41 | ||
2022-12-20 | Refactor some of `bun pm` | 1 | -73/+58 | ||
2022-12-20 | [bunx] Improve reliability by checking the `"bin"` from package.json if ↵ | 1 | -10/+230 | ||
necessary | |||||
2022-12-19 | New subcommand: `bunx` (#1634) | 1 | -0/+188 | ||
* Implement `bunx` * copy cleanup Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-15 | Fix missing error when command not found | 1 | -1/+1 | ||
2022-12-15 | [bun run] Include signal code on error | 1 | -85/+48 | ||
2022-12-15 | [bun run] Introduce `--bun` flag to run in bun instead of node | 1 | -72/+192 | ||
2022-12-15 | [bun run] Use `execve` instead of `posix_spawn` when bun no longer needs to ↵ | 1 | -20/+78 | ||
run script/bin When we launch a script & there's nothing left to do, we should replace the process image with the new process instead of keeping the bun process alive while the other script is running. | |||||
2022-12-14 | undo bad free | 1 | -4/+0 | ||
2022-12-14 | remove incorrect connector character | 1 | -3/+5 | ||
2022-12-13 | add `bun pm ls` for printing lockfiles (#1612) | 1 | -0/+182 | ||
* list directory structure from lockfile * dim connectors and versions | |||||
2022-12-09 | Exclude other ts declaration file extensions (#1596) | 1 | -0/+2 | ||
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> | |||||
2022-12-06 | Fix glibc symbol version issues preventing `bun install` from being used in ↵ | 1 | -9/+3 | ||
older glibc versions (#1580) * Prevent integer overflow in connectError * Add missing deepEquals() type to Bun * fix missing glibc symbols * Fix missing symbol issues * Try this * Update glibc-versions-hack.cpp * Update glibc-versions-hack.cpp * Update glibc-versions-hack.cpp Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-04 | [internal] Make string comparisons faster | 2 | -2/+2 | ||
2022-12-04 | Mildly faster startup time | 2 | -17/+17 | ||
2022-12-01 | Fix crash in test runner with gc mode | 1 | -1/+3 | ||
2022-11-29 | import everything from "bun" where possible | 13 | -44/+44 | ||
2022-11-27 | don't start NetworkThread unless necessary | 2 | -3/+2 | ||
2022-11-23 | Remove extra newlines | 1 | -1/+1 | ||
2022-11-20 | Make it yellow | 1 | -1/+1 | ||
2022-11-20 | Print a count | 1 | -20/+46 | ||
2022-11-19 | Introduce `BUN_GARBAGE_COLLECTOR_LEVEL` debug environment variable | 1 | -6/+1 | ||
2022-11-14 | Bugfixes and perf improvements to child_process | 1 | -3/+3 | ||
2022-11-13 | Fix incorrect exit status message | 1 | -3/+6 | ||
2022-11-10 | Allow install script to specify debug-info variant with debug symbols (#1484) | 1 | -3/+11 | ||
2022-11-10 | [bun run] Fix potential crash when a command terminates abnormally | 1 | -4/+17 | ||
2022-11-09 | Add bun-types, add typechecking, add `child_process` types (#1475) | 1 | -4/+5 | ||
* Add bun-types to packages * Improve typing * Fix types in tests * Fix dts tests * Run formatter * Fix all type errors * Add strict mode, fix type errors * Add ffi changes * Move workflows to root * Add workflows * Remove labeler * Add child_process types * Fix synthetic defaults issue * Remove docs * Move scripts * Run prettier * Include examples in typechecking * captureStackTrace types * moved captureStackTrace types to globals * Address reviews Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> | |||||
2022-11-07 | clean up some reliability issues with automatic install | 1 | -0/+13 | ||
2022-11-07 | [bun:test] Implement `done` callback with support for async functions | 1 | -1/+4 | ||
2022-11-06 | Automatically install npm packages when running a script in Bun's runtime ↵ | 1 | -0/+3 | ||
(#1459) * Update bundler.zig * WIP * Update README.md * Update README.md * wip * Support running scripts without package.json * Add `--no-auto-install` and `--prefer-offline` flags * WIP * wip * Update headers-handwritten.h * WIP * Build fixes * Fix UAF * Update install.zig * Must call .allocate() * Micro-optimization: only call .timestamp() once per tick when installing packages * Support progress bar * Extend the timestamp for package staleness checks to 1 day * Add `--prefer-latest`, `-i` CLI Flags * Fix crash * Support line text manually being set on an Error instance * Add a few more fields for error messages * Fix bug when counting 8 character strings in string builder * Implement error handling for automatic package installs! * Fix crash * Make it say module when there's a slash * Update module_loader.zig * Ban dependency versions in import specifiers when a package.json is present * Remove unused field * Update README.md * Update README.md * Update README.md * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-10-28 | Enable `BUN_OVERRIDE_MODULE_PATH` in `bun wiptest` | 1 | -0/+7 | ||
2022-10-28 | Update default tsconfig (#1418) | 1 | -5/+10 | ||
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> | |||||
2022-10-27 | Implement `process.release` | 1 | -0/+9 | ||
2022-10-20 | Update install script to use secure flags | 1 | -2/+2 | ||
2022-10-18 | get args fix (#1346) | 1 | -1/+1 | ||
* fix args.len < capacity check * tests for args * file name change * switch to stdout.writer, use JSON for parsing * bun-debug or bun * missing arg | |||||
2022-10-12 | [`bun wiptest`] Ignore `.` folders | 1 | -1/+1 | ||
2022-10-06 | Add --profile to bun upgrade | 1 | -18/+30 | ||
2022-10-05 | Add abstraction for ticking async event loop | 1 | -1/+2 | ||
2022-10-02 | Remove extra green | 1 | -6/+1 | ||
2022-10-01 | [bun:test] When there are lots of tests, print the failures at the bottom so ↵ | 1 | -6/+20 | ||
you can see them easier | |||||
2022-09-30 | Remove extraneous calls to `.ref()` | 1 | -1/+3 | ||
2022-09-28 | Queue tests rather than run immediately | 1 | -2/+20 | ||