mirror of
https://github.com/oven-sh/bun
synced 2026-02-17 06:12:08 +00:00
Previously, `bun install` would error with "Workspace not found" when a literal workspace path (e.g. "terraform") didn't exist, but silently succeed when a glob pattern (e.g. "terraform*") matched nothing. This inconsistency differed from npm, which treats both cases identically with silent success. Now both literal and glob workspace paths that don't resolve to a valid package.json are silently skipped, matching npm behavior. Closes #26970 Co-Authored-By: Claude <noreply@anthropic.com>