Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-03-07 | Reorganize tests (#2332) | 11 | -4672/+0 | ||
2023-03-05 | consider current working directory when resolving relative paths (#2313) | 1 | -1/+29 | ||
* consider current working directory when resolving relative paths fixes #2298 * comment test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-03-05 | [install] fix connection error detection (#2307) | 6 | -81/+144 | ||
2023-03-04 | [install] use `latest` tagged version if in range (#2302) | 1 | -0/+62 | ||
2023-03-04 | fix(bunx): can't resolve executable for scoped packages (#2293) | 1 | -1/+40 | ||
Fixes #2292 | |||||
2023-03-03 | fix(bunx): Show usage when calling bunx without arguments (#2295) | 1 | -0/+19 | ||
* Make sure to return a helpful error message if no args are passed to bunx * Add tests for bunx without args | |||||
2023-03-02 | add tests for scoped dependency aliasing (#2271) | 3 | -15/+111 | ||
2023-02-27 | resolve duplicated dependency correctly (#2213) | 2 | -0/+232 | ||
2023-02-25 | improve `bun pm ls` (#2192) | 1 | -0/+248 | ||
2023-02-24 | prefer `bun.copy()` over `std.mem.copy()` (#2152) | 1 | -1/+2 | ||
2023-02-23 | fix illegal memory reference in `bun link` (#2147) | 1 | -9/+133 | ||
2023-02-21 | [install] support SCP-style `git` dependencies (#2124) | 2 | -3/+160 | ||
- try HTTPS first before SSH - improve package name resolution - improve report messages fixes #2119 | |||||
2023-02-21 | Update test runner output with colors and diffs (#2122) | 1 | -2/+2 | ||
* add zig-diff * move diff functions * toHaveProperty diff for objects * use formatter * format labels * move work to format, diff when it makes sense * remove comptime, dim equal slices * order before diff * line diffs * add diffz * switch to diffz * add `diffLines()` function * small `prettyFmt()` bug fix * test runner color output * update `toBe()` error output * fix test * diff method, fix crash * fix link test * remove `isRegex` | |||||
2023-02-17 | use `bun.logger` instead of `bun.Output` (#2099) | 1 | -1/+39 | ||
2023-02-17 | [install] support git dependencies (#2094) | 1 | -1/+251 | ||
2023-02-17 | allow `bun add` of packages with capital letters (#2095) | 2 | -1/+50 | ||
2023-02-16 | Support yarn-like `"workspaces"."packages": string[]` (#2086) | 1 | -2/+47 | ||
* [workspaces] Support yarn-like `"workspaces"."packages": string[]` * Add a test * :scissors: --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-02-14 | [install] link network-delayed `.bin` scripts correctly (#2076) | 1 | -1/+1 | ||
2023-02-14 | [install] improve `package.json` validation (#2074) | 1 | -0/+196 | ||
- report error and exit gracefully instead of crashing | |||||
2023-02-12 | [install] support `git://github.com/` dependencies (#2059) | 1 | -0/+69 | ||
2023-02-11 | fix string corruption in FS entry cache (#2055) | 1 | -2/+41 | ||
2023-02-11 | fix segfault during non-install script execution (#2045) | 1 | -1/+32 | ||
2023-02-10 | [install] fix duplicate check on `peerDependencies` (#2039) | 1 | -1/+46 | ||
fixes #2037 | |||||
2023-02-09 | [install] fix flaky tests (#2032) | 2 | -37/+37 | ||
2023-02-08 | [install] pick `latest` tagged version by default (#2016) | 2 | -6/+117 | ||
* [install] pick `latest` tagged version by default fixes #1993 * update `package.json` the same way as `npm | |||||
2023-02-08 | [install] assorted fixes & improvements (#2011) | 7 | -67/+245 | ||
- take `peerDependencies` into account during package placement - do not recursively resolve `workspaces` (matches `npm`) - link binaries to non-root packages correctly - prune empty nodes during dependency tree construction - support non-standard `workspace:` specifier | |||||
2023-02-06 | Fix test failing on macOS | 1 | -1/+2 | ||
2023-02-06 | [WIP] fix corner cases with aliases dependencies (#2000) | 2 | -3/+150 | ||
* fix corner cases with aliases dependencies * in-memory convert legacy `bun.lockb` | |||||
2023-01-31 | Re-run prettier after changes | 3 | -71/+79 | ||
2023-01-31 | [bun add] various fixes (#1953) | 3 | -789/+312 | ||
2023-01-30 | Fix crash in `bun install <package-name>` (#1947) | 1 | -129/+355 | ||
* Fix crash in `bun install <package-name>` when <package-name> already exists * Prettier * Add test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2023-01-30 | [bunx] fix version parsing (#1937) | 1 | -0/+64 | ||
2023-01-28 | [bun add] fix more corner cases (#1930) | 2 | -26/+187 | ||
2023-01-28 | parse `git+https://github.com/` as GitHub URLs (#1926) | 2 | -5/+164 | ||
fixes #1921 | |||||
2023-01-28 | normalise `bun add` package specifiers (#1924) | 3 | -134/+361 | ||
- fix invalid buffer references fixes #1920 | |||||
2023-01-28 | [WIP] append GitHub package after fully parsed (#1911) | 4 | -75/+123 | ||
2023-01-27 | prettier | 1 | -156/+245 | ||
2023-01-27 | Fix flakiness | 1 | -2/+3 | ||
2023-01-26 | parse package-spec from CLI correctly (#1895) | 3 | -8/+135 | ||
* parse package-spec from CLI correctly fixes #861 * copy separately for `UpdateRequest.name` fix GItHub URL reporting in results update tests to reflect latest code changes * better fix for GitHub URL display issue | |||||
2023-01-24 | support GitHub URLs as dependencies (#1875) | 1 | -31/+364 | ||
2023-01-24 | support `bun link` of scoped packages (#1892) | 2 | -3/+202 | ||
2023-01-21 | [semver] parse `^` & `~` expressions correctly (#1854) | 1 | -34/+401 | ||
* [semver] parse `^` & `~` expressions correctly * handle semver ranges correctly against build tags | |||||
2023-01-19 | repopulate `alias_map` correctly (#1847) | 3 | -42/+210 | ||
2023-01-19 | Improve error message when a workspace is not found | 1 | -0/+37 | ||
2023-01-19 | parse dependency specifier correctly (#1840) | 1 | -3/+45 | ||
2023-01-18 | support npm dependency aliasing (#1837) | 1 | -10/+144 | ||
* support npm dependency aliasing * fix variable name | |||||
2023-01-17 | [test] Add helper for bun env | 1 | -6/+2 | ||
2023-01-17 | bun install tests shouldn't fail due to terminal colors | 1 | -38/+35 | ||
2023-01-16 | [bun install] Make it print `workspace:` instead of `workspace://` | 1 | -143/+231 | ||
2023-01-14 | fix life-cycle script execution (#1799) | 1 | -25/+90 | ||
- change current working directory for workspaces - add `node_modules/.bin` to `PATH` before running |