aboutsummaryrefslogtreecommitdiff
path: root/src/install (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-25Add logGravatar Jarred Sumner 1-0/+3
2023-01-24Add assertionGravatar Jarred Sumner 1-0/+18
2023-01-24one less allocGravatar Jarred Sumner 2-13/+37
2023-01-24More careful about the lifetime of aliasGravatar Jarred Sumner 1-4/+15
2023-01-24assert defined in developmentGravatar Jarred Sumner 1-6/+29
2023-01-24get cache key for github in one passGravatar Jarred Sumner 1-30/+65
2023-01-24support GitHub URLs as dependencies (#1875)Gravatar Alex Lam S.L 4-82/+431
2023-01-24support `bun link` of scoped packages (#1892)Gravatar Alex Lam S.L 1-1/+13
2023-01-21Fix test failure due to UBGravatar Jarred Sumner 5-40/+72
2023-01-21minor clean-ups (#1869)Gravatar Alex Lam S.L 2-14/+9
- use `Lockfile.str()` more - allow `child-process-stdio.test.js` to run with `bun-debug`
2023-01-21[semver] parse `^` & `~` expressions correctly (#1854)Gravatar Alex Lam S.L 4-212/+240
* [semver] parse `^` & `~` expressions correctly * handle semver ranges correctly against build tags
2023-01-21Remove UB with `semver.String`Gravatar Jarred Sumner 3-34/+46
Thanks @MasterQ32
2023-01-19use `String.from()` (#1850)Gravatar Alex Lam S.L 3-4/+11
2023-01-20Bugfixes to install (#1848)Gravatar Jarred Sumner 5-26/+119
2023-01-19repopulate `alias_map` correctly (#1847)Gravatar Alex Lam S.L 2-28/+30
2023-01-19Fix UAF when opening workspacesGravatar Jarred Sumner 1-2/+0
2023-01-19Improve error message when a workspace is not foundGravatar Jarred Sumner 1-9/+60
2023-01-19parse dependency specifier correctly (#1840)Gravatar Alex Lam S.L 1-125/+126
2023-01-19fix stale references upon `Lockfile` tree cloning (#1845)Gravatar Alex Lam S.L 2-4/+14
2023-01-19fix memory reference issues (#1841)Gravatar Alex Lam S.L 1-3/+7
2023-01-18support npm dependency aliasing (#1837)Gravatar Alex Lam S.L 4-231/+111
* support npm dependency aliasing * fix variable name
2023-01-17feat(cli): Support `HTTPS_PROXY`, `HTTP_PROXY`, and `NO_PROXY` #1440 (#1814)Gravatar Ciro Spaciari 1-22/+11
* WIP: http_proxy implemented, first steps for https_proxy #1440 * add HTTP_PROXY support to upgrade_command and WIP: tunneling * WIP async handshake, stuck on WANT_READ, try to defer + check * create and upgrade with proxy working, TLS and non-TLS to proxy TLS working * bun install/upgrade/create working with http(s)_proxy #1440 * add NO_PROXY support #1440 * remove commented code and add TODO * fix getHttpProxy no_proxy * fix formatting * refactor catch and getHttpProxy, fix empty strngs in env for proxy * allow optimization for handleResponseBody
2023-01-16[bun install] Make it print `workspace:` instead of `workspace://`Gravatar Jarred Sumner 2-7/+7
2023-01-16Fix `getFdPath` when `/proc/fd` is not mountedGravatar Jarred Sumner 3-10/+10
2023-01-14fix life-cycle script execution (#1799)Gravatar Alex Lam S.L 1-15/+33
- change current working directory for workspaces - add `node_modules/.bin` to `PATH` before running
2023-01-14support installation of NPM workspaces (#1764)Gravatar Alex Lam S.L 5-289/+519
2023-01-13move more thingsGravatar Jarred SUmner 4-12/+12
2023-01-13Split some things into more files and use bun namespace instead of import moreGravatar Jarred SUmner 2-2/+2
2023-01-10 use `strings.hasPrefixComptime()` (#1755)Gravatar Alex Lam S.L 1-2/+2
2023-01-02Make the error message for unsupported dependency type a little clearerGravatar Jarred Sumner 1-1/+1
2022-12-30Make `NamesIterator` saferGravatar Jarred Sumner 1-9/+15
2022-12-30More assertionsGravatar Jarred Sumner 2-6/+15
2022-12-30Use ArrayBitSet that passes by reference instead of valueGravatar Jarred Sumner 1-60/+584
2022-12-30Fix crash with `bun install <foo>`Gravatar Jarred Sumner 1-18/+26
2022-12-29Fix broken hardlink installsGravatar Jarred SUmner 1-1/+1
2022-12-28Upgrade to latest Zig (#1610)Gravatar Jarred Sumner 12-282/+293
* @min and @max * builtins and some trivial ones * Most of them * more * more! * More Progress * wip * Update tagged_pointer.zig * Update http_client_async.zig * Most of the iterable dir changes * alright * Remove usages of deprecated formatters * :camera: * fmt * Update shimmer.zig * wip * wip * wip * progress * more * Latest * stuck on error * latest * workaround stage2 * wip * Update string_immutable.zig * wip * Migrate `Dirent` and `require("fs')` to use JSC<>Zig bindings * Fix build errors * Fixup most of the test failures * Fix `make headers` * Fix "outside package path" error * Fixup aligned alloc * Add missing file * linux * More linux fixes * use latest peechy * Fix transpiler test failure * Forgot about these * Fixup test failure * Update node-timers.test.ts * [node:htt] Fix `undefined is not an object` error Fixes https://github.com/oven-sh/bun/issues/1618 * Update http.exports.js * Make this test less flaky * fix hashes * Fix hex formatting and zls issues * Download zig version * Update Dockerfile * Update Dockerfile * Update uws * Update Dockerfile * Set llvm version * Update README.md * Update uws * Update Dockerfile * Update io_linux.zig * Update bun.zig * Log output * workaround strange @cInclude error * Make ffi tests better * Don't use cImport * Update c.zig * Update c-bindings.cpp * call setOutputDir * Update Dockerfile * Use a longer name * latest * Update serve.test.ts Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Veikka Tuominen <git@vexu.eu>
2022-12-26[install] specify `auth-type` (#1667)Gravatar Alex Lam S.L 1-24/+28
2022-12-26[install] use specified base URL as default fallback within scopes (#1665)Gravatar Alex Lam S.L 2-30/+85
2022-12-25[install] use default URL when only auth token is specified (#1664)Gravatar Alex Lam S.L 2-36/+130
Previously it would default to `http://localhost/` which was inconsistent with the case sans token. Use official `npm` registry as fallback in both cases.
2022-12-22add romeGravatar Jarred Sumner 1-0/+1
2022-12-22[install] fix remaining corner cases with dependency resolution (#1649)Gravatar Alex Lam S.L 1-45/+20
2022-12-22[install] avoid dependency conflicts between siblings (#1647)Gravatar Alex Lam S.L 1-26/+27
- consider `peerDependencies` when hoisting packages
2022-12-22fix `bun install` dependency resolution (#1643)Gravatar Alex Lam S.L 1-10/+28
- avoid conflicts due to hoisted placement when parent and child depends on different versions of the same package
2022-12-19New subcommand: `bunx` (#1634)Gravatar Jarred Sumner 1-117/+136
* Implement `bunx` * copy cleanup Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-12-15[bun run] Introduce `--bun` flag to run in bun instead of nodeGravatar Jarred Sumner 1-0/+2
2022-12-13add `bun pm ls` for printing lockfiles (#1612)Gravatar Dylan Conway 1-1/+1
* list directory structure from lockfile * dim connectors and versions
2022-12-13missing id when over 8 packagesGravatar Dylan Conway 1-3/+7
2022-12-12fix fallback install methodGravatar Dylan Conway 1-1/+4
2022-12-09Add `"bun"` to listGravatar Jarred Sumner 1-14/+1
2022-12-06Fix glibc symbol version issues preventing `bun install` from being used in ↵Gravatar Jarred Sumner 1-8/+5
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>