mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
When a workspace package has the same name as an npm package and a dependency uses a dist-tag specifier (e.g. "latest" or ""), bun install would incorrectly fetch from the npm registry instead of symlinking to the local workspace. This extends the workspace resolution logic in both the lockfile package resolver and the enqueue step to handle dist-tag versions the same way as other version specifiers, preferring local workspace packages when `link_workspace_packages` is enabled.