Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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 | ||
2022-02-21 | Move lockfile into separate file | 1 | -2795/+5 | ||
2022-02-13 | Update install.zig | 1 | -12/+10 | ||
2022-02-13 | [bun install] Resolve nested `folder:` dependencies and tweak lockfile ↵ | 1 | -180/+279 | ||
format for better determinism | |||||
2022-02-12 | [bun install] Move unnecessary data out of the lockfile | 1 | -49/+57 | ||
2022-02-12 | [bun install] Reduce noise in printed yarn.lock | 1 | -3/+17 | ||
2022-02-12 | [bun install] When `--production`, fail the build if symlinking fails | 1 | -12/+31 | ||
2022-02-12 | Implement multiple `bin` links for `bun install -g` | 1 | -10/+28 | ||
2022-02-12 | Make `bun install` fast by default on linux | 1 | -1/+1 | ||
2022-02-12 | Fix crash that wasn't a crash | 1 | -2/+1 | ||
2022-02-12 | Load config | 1 | -4/+20 | ||
2022-02-12 | Update install.zig | 1 | -3/+3 | ||
2022-02-12 | [bun install] Improve error handling when package is not found | 1 | -17/+97 | ||
2022-02-12 | [bun install] Print linked bin names and improve output | 1 | -55/+269 | ||
2022-02-11 | [bun install] Implement global installs | 1 | -8/+78 | ||
2022-02-11 | [bun install] Implement private registry support & scoped packages | 1 | -40/+201 | ||
Fixes https://github.com/Jarred-Sumner/bun/issues/112 | |||||
2022-02-11 | [bun install] Fix `bun add` multiple packages writing malformed package.json | 1 | -24/+25 | ||
2022-02-11 | [bun install] Fix lockfile corruption | 1 | -212/+227 | ||
2022-02-10 | Update install.zig | 1 | -0/+4 | ||
2022-02-10 | [bun install] Print more descriptive errors | 1 | -5/+23 | ||
2022-02-04 | Several reliability improvements to HTTP | 1 | -9/+17 | ||
2022-02-03 | [bun install] Configurable max http retry count | 1 | -0/+7 | ||
2022-02-03 | Missing newline in errors in bun install | 1 | -4/+8 | ||
2022-01-28 | Update AST layout to store capacity for items | 1 | -15/+12 | ||
We want to be able to push to the list | |||||
2022-01-27 | [bunfig] Implement config file format | 1 | -2/+2 | ||
2022-01-24 | No io_uring for Ubuntu 20.04 | 1 | -6/+6 | ||
2022-01-04 | Improve how we detect if terminal colors are supported | 1 | -0/+4 | ||
2022-01-04 | [bun install] Fix more cases where bytes are printed instead of strings | 1 | -10/+38 | ||
2022-01-03 | dead code | 1 | -2/+0 | ||
2022-01-03 | Implement a crash reporter and improve some error handling in `bun install` | 1 | -54/+45 | ||
2022-01-03 | Woops | 1 | -2/+28 | ||
2022-01-03 | [bun install] Significant perf improvement to installing new packages and ↵ | 1 | -120/+155 | ||
fixes 'bun install --production'. Closes #97 |