Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-11-29 | import everything from "bun" where possible | 1 | -12/+12 | ||
2022-11-20 | Print a count | 1 | -4/+4 | ||
2022-11-08 | Install optional dependencies for auto-install | 1 | -12/+27 | ||
2022-11-07 | clean up some reliability issues with automatic install | 1 | -11/+11 | ||
2022-11-06 | Automatically install npm packages when running a script in Bun's runtime ↵ | 1 | -199/+971 | ||
(#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-23 | Preserve trailing newline when updating package.json | 1 | -0/+8 | ||
Fixes https://github.com/oven-sh/bun/issues/1375 | |||||
2022-10-19 | Cache dir loader: Prefer `$BUN_INSTALL` and `$XDG_CACHE_HOME` to `$HOME`. ↵ | 1 | -5/+5 | ||
(#1351) This partially addresses https://github.com/oven-sh/bun/issues/696 , by using `$XDG_CACHE_HOME` for those of us who already have that env var set. | |||||
2022-10-08 | fix: install error when node_modules already in npm package (#1301) | 1 | -0/+2 | ||
2022-09-17 | Fix crash when specifying same package name twice in `bun add` | 1 | -2/+7 | ||
Fixes https://github.com/oven-sh/bun/issues/1202 | |||||
2022-09-16 | [bun install] Remove spinloop | 1 | -26/+11 | ||
2022-09-16 | Make new HTTP client more stable | 1 | -4/+2 | ||
2022-09-11 | New HTTP client (#1231) | 1 | -10/+14 | ||
* wip * It mostly works! * Support `bun install` * Support `bun create` * Support chunked transfer encoding * Handle Keep Alive when redirecting to a different domain Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-08-13 | Improve event loop reliability on Linux | 1 | -10/+39 | ||
2022-08-10 | [bun unlink] Partially implement | 1 | -3/+125 | ||
2022-08-08 | fix compiling error on linux (#1027) | 1 | -1/+2 | ||
2022-08-08 | refactor(src/install): clap readability fixes (#1024) | 1 | -6/+6 | ||
Signed-off-by: Ryan Russell <git@ryanrussell.org> | |||||
2022-08-07 | [bun install] Increase "slow filesystem detected" notice | 1 | -1/+1 | ||
2022-08-07 | [bun install] Implement `bun link` | 1 | -15/+456 | ||
2022-08-07 | [bun install] Implement `symlink` backend | 1 | -49/+200 | ||
Fixes https://github.com/oven-sh/bun/issues/1017 | |||||
2022-08-05 | [bun install] Support private registries & private scopes | 1 | -20/+38 | ||
2022-08-03 | [bun install] Include scripts when lockfile doesn't change | 1 | -1/+1 | ||
2022-08-03 | [bun install] Support lifecycle hooks for cwd's package.json | 1 | -1/+95 | ||
`bun install` will now run prepare & install `"scripts"` for the root package.json (not dependencies) This makes things like `husky` work and possibly `patch-package` | |||||
2022-07-22 | [bun install] Fix issue with URL path when sending request | 1 | -1/+55 | ||
2022-07-22 | `bun install` use custom BUN_CONFIG_REGISTRY port (#823) | 1 | -1/+1 | ||
2022-07-17 | [bun install] Implement `--no-verify` flag to skip verifying integrity of ↵ | 1 | -2/+16 | ||
downloaded packages | |||||
2022-07-17 | [bun install] Rename `skip_verify` -> `skip_verify_installed_version_number` | 1 | -8/+8 | ||
2022-07-17 | [bun install] Implement `--no-progress` to disable the progress bar | 1 | -1/+35 | ||
2022-07-17 | fix scoped packages name resolution (#760) | 1 | -2/+8 | ||
2022-07-12 | [bun install] Handle case that should really never happen | 1 | -10/+12 | ||
2022-07-12 | [bun install] Fix NotSameFileSystem error (for real this time) | 1 | -3/+6 | ||
2022-07-11 | Revert "Fix: NotSameFileSystem at clonefile (#546)" (#581) | 1 | -1/+1 | ||
This reverts commit 2659febd1b74e8215ff7dbfb2d1b19f4b4f8a71a. | |||||
2022-07-11 | Fix: NotSameFileSystem at clonefile (#546) | 1 | -1/+1 | ||
Fixes issue #531 Before this, using 'bun install' on a directory in different filesystem such as tmpfs (/tmp) would have caused "Error: NotSameFileSystem". This commit fixes that by handling this error, and at end of function it will fall back to use copyfile (same as --backend=copyfile) | |||||
2022-07-10 | Update GitHub URL to match new repo URL (#547) | 1 | -1/+1 | ||
* Update repo URLs * GitHub URL update * Revert accidental URL changes | |||||
2022-07-10 | Remove unnecessary `Output.flush`s before `Global.exit` and `Global.crash` ↵ | 1 | -23/+0 | ||
(#535) * fix: add missing newline * refactor: std.process.exit -> Global.exit * fix: std.os.abort -> Global.exit I'm not sure about this one. Please verify. * cleanup: remove unnecessary `Output.flush`s | |||||
2022-07-09 | fix: update build files to latest Zig version | 1 | -1/+1 | ||
2022-07-09 | typo | 1 | -2/+2 | ||
2022-07-07 | [install] Use an identifier for the accept header value | 1 | -3/+9 | ||
2022-07-07 | Fixes https://github.com/Jarred-Sumner/bun/issues/341 | 1 | -1/+1 | ||
2022-07-06 | [bun install] Fix `NotSameFileSystem` error | 1 | -1/+1 | ||
2022-06-22 | change the directory structurejarred/rename | 1 | -1/+1 | ||
2022-05-05 | E.String gets a Rope | 1 | -6/+6 | ||
2022-04-08 | Fix hardlink fallback | 1 | -1/+1 | ||
2022-03-17 | query_string_map -> url | 1 | -1/+1 | ||
2022-03-08 | rename _global -> bun | 1 | -29/+28 | ||
2022-03-04 | upgrade zigjarred/upgrade-zig-2 | 1 | -12/+10 | ||
2022-03-02 | cleanup error printing | 1 | -1/+2 | ||
2022-02-27 | WASM | 1 | -18/+18 | ||
2022-02-27 | [JSON] Use UTF-8 JSON parser when it's not for JavaScript | 1 | -2/+2 | ||
2022-02-25 | [bun install] Add metadata hash | 1 | -2/+15 | ||
2022-02-24 | [bun install] Skip saving the lockfile if there are no changes | 1 | -10/+28 | ||