mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-07 05:32:52 -05:00
This fixes an issue where pnpm fetch would fail in Docker builds when local directory dependencies (file: protocol) were not available. The fix adds an ignoreLocalPackages option that is passed from the fetch command to skip local dependencies during graph building, since pnpm fetch only downloads packages from the registry and doesn't need local packages that won't be available in Docker builds. close #10460