aboutsummaryrefslogtreecommitdiff
path: root/src/install/install.zig (follow)
AgeCommit message (Expand)AuthorFilesLines
2023-06-28[install] workaround run-time module loading issue (#3432)Gravatar Alex Lam S.L 1-7/+33
2023-06-26[bun install] Implement `--exact` flag (#3409)Gravatar Jarred Sumner 1-7/+46
2023-06-26[install] support trustedDependencies (#3288)Gravatar Alex Lam S.L 1-140/+144
2023-06-25Add support for install with --frozen-lockfile (#3365)Gravatar Tiago Teixeira 1-0/+13
2023-06-21upgrade zig to `v0.11.0-dev.3737+9eb008717` (#3374)Gravatar Dylan Conway 1-43/+43
2023-06-20Improve error message for `error.DependencyLoop` (#3368)Gravatar Jarred Sumner 1-1/+1
2023-06-13Fix crash in CJS (#3294)bun-v0.6.9Gravatar Jarred Sumner 1-1/+1
2023-06-11add --save argument to install (#3277)Gravatar Keyhan Vakil 1-53/+68
2023-06-10Make cold `bun install` use 2x less memory (#3271)Gravatar Jarred Sumner 1-7/+47
2023-06-09[install] fix lockfile fallback for life cycle scripts (#3265)bun-v0.6.8Gravatar Alex Lam S.L 1-1/+7
2023-06-10[install] fix life cycle scripts execution (#3235)Gravatar Alex Lam S.L 1-66/+88
2023-06-09Fix to retain a newline after removing a package (#3231)Gravatar ytakhs 1-0/+1
2023-05-25[install] fix `.bin` linking (#3067)Gravatar Alex Lam S.L 1-3/+3
2023-05-24Load `.env.test`, set NODE_ENV=test in `bun test`, load `.env.{test,productio...Gravatar Jarred Sumner 1-1/+1
2023-05-10feat(fetch) add redirect: 'error' support (#2845)Gravatar Ciro Spaciari 1-0/+2
2023-05-10`bun add` from root folder when call within workspaces (#2841)Gravatar Alex Lam S.L 1-94/+86
2023-05-10[install] operator on root package of workspaces (#2834)Gravatar Alex Lam S.L 1-44/+89
2023-05-08Fix bug in Bun.build() where it wouldn't pick up changes to directories on re...Gravatar Jarred Sumner 1-1/+3
2023-05-01[install] handle `devDependencies` of local folders (#2781)Gravatar Alex Lam S.L 1-63/+25
2023-04-30[install] handle repeated install of GitHub dependency correctly (#2780)Gravatar Alex Lam S.L 1-3/+18
2023-04-25fix `make setup` (#2731)Gravatar Alex Lam S.L 1-2/+4
2023-04-24[install] fix `bun add` on non-aliased dependency (#2728)Gravatar Alex Lam S.L 1-5/+18
2023-04-22Make `Bun.build` more reliable (#2718)Gravatar Jarred Sumner 1-4/+4
2023-04-19Fix broken autocompleteGravatar Jarred Sumner 1-1/+1
2023-04-09Remove usages of `void{}` in favor of `{}`Gravatar Jarred Sumner 1-16/+16
2023-04-07Bun gets a new bundler (#2312)Gravatar Jarred Sumner 1-1/+1
2023-04-07feat(tls.Server) basic support (cert, key, rejectUnauthorized, requestCert, c...Gravatar Ciro Spaciari 1-0/+2
2023-04-06Proactively add these to the listGravatar Jarred Sumner 1-0/+2
2023-04-02[install] reduce parallel HTTP requests under heavy load (#2536)Gravatar Alex Lam S.L 1-56/+76
2023-03-30[install] fix stale pointer with tarball URLs (#2520)Gravatar Alex Lam S.L 1-11/+23
2023-03-30[install] fix re-install of git dependency (#2519)Gravatar Alex Lam S.L 1-10/+72
2023-03-29[install] fix re-run of tarball URL from lockfile (#2507)Gravatar Alex Lam S.L 1-28/+76
2023-03-28`bun --watch` and `bun test --watch` (#2500)Gravatar Jarred Sumner 1-3/+1
2023-03-28[install] support tarball URLs (#2497)Gravatar Alex Lam S.L 1-15/+239
2023-03-23Fixes #2462 (#2463)Gravatar Jarred Sumner 1-2/+2
2023-03-19Fix bug with scoped aliased dependencies in bun install on macOSGravatar Jarred Sumner 1-3/+2
2023-03-19Several bug fixes (#2427)Gravatar Jarred Sumner 1-11/+37
2023-03-01Revert "Update clap (#2238)"Gravatar Jarred Sumner 1-75/+72
2023-03-01Revert "Add `-D`, `--dev` flags for bun install (#2240)"Gravatar Jarred Sumner 1-9/+9
2023-02-28Add `-D`, `--dev` flags for bun install (#2240)Gravatar Justin Whear 1-9/+9
2023-02-28Update clap (#2238)Gravatar Justin Whear 1-72/+75
2023-02-24prefer `bun.copy()` over `std.mem.copy()` (#2152)Gravatar Alex Lam S.L 1-23/+22
2023-02-23Upgrade Zig (#2151)Gravatar Dylan Conway 1-5/+5
2023-02-21[install] support SCP-style `git` dependencies (#2124)Gravatar Alex Lam S.L 1-25/+67
2023-02-17use `bun.logger` instead of `bun.Output` (#2099)Gravatar Alex Lam S.L 1-11/+16
2023-02-17[install] support git dependencies (#2094)Gravatar Alex Lam S.L 1-187/+499
2023-02-15feat(fetch) AbortSignal (#2019)Gravatar Ciro Spaciari 1-2/+2
2023-02-14[install] link network-delayed `.bin` scripts correctly (#2076)Gravatar Alex Lam S.L 1-4/+0
2023-02-14[install] improve `package.json` validation (#2074)Gravatar Alex Lam S.L 1-60/+48
2023-02-11fix segfault during non-install script execution (#2045)Gravatar Alex Lam S.L 1-166/+51