diff options
| author | Yordis Prieto <[email protected]> | 2025-07-30 23:21:07 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-30 23:21:07 -0400 |
| commit | 31b8e3d5ab90983172616cc2018bad49ca7dd0f0 (patch) | |
| tree | da897baed6a49123253224f4d27a2c7cdf5c2bb7 | |
| parent | 1a78d833a81bf3864ec6445102a9392d16ca8752 (diff) | |
| download | opencode-31b8e3d5ab90983172616cc2018bad49ca7dd0f0.tar.gz opencode-31b8e3d5ab90983172616cc2018bad49ca7dd0f0.zip | |
docs: clarify Bun's default registry resolution in index.ts (#1438)
| -rw-r--r-- | packages/opencode/src/bun/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/opencode/src/bun/index.ts b/packages/opencode/src/bun/index.ts index eea467370..cd413ff4a 100644 --- a/packages/opencode/src/bun/index.ts +++ b/packages/opencode/src/bun/index.ts @@ -73,6 +73,7 @@ export namespace BunProc { // Let Bun handle registry resolution: // - If .npmrc files exist, Bun will use them automatically // - If no .npmrc files exist, Bun will default to https://registry.npmjs.org + // - No need to pass --registry flag log.info("installing package using Bun's default registry resolution", { pkg, version }) await BunProc.run(args, { |
