0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/npm/peer_deps_with_copied_folders
David Sherret cbb3f85433
feat(unstable/npm): support peer dependencies (#16561)
This adds support for peer dependencies in npm packages.

1. If not found higher in the tree (ancestor and ancestor siblings),
peer dependencies are resolved like a dependency similar to npm 7.
2. Optional peer dependencies are only resolved if found higher in the
tree.
3. This creates "copy packages" or duplicates of a package when a
package has different resolution due to peer dependency resolution—see
https://pnpm.io/how-peers-are-resolved. Unlike pnpm though, duplicates
of packages will have `_1`, `_2`, etc. added to the end of the package
version in the directory in order to minimize the chance of hitting the
max file path limit on Windows. This is done for both the local
"node_modules" directory and also the global npm cache. The files are
hard linked in this case to reduce hard drive space.

This is a first pass and the code is definitely more inefficient than it
could be.

Closes #15823
2022-11-08 14:17:24 -05:00
..
main.out feat(unstable/npm): support peer dependencies (#16561) 2022-11-08 14:17:24 -05:00
main.ts feat(unstable/npm): support peer dependencies (#16561) 2022-11-08 14:17:24 -05:00
main_info.out feat(unstable/npm): support peer dependencies (#16561) 2022-11-08 14:17:24 -05:00
main_info_json.out feat(unstable/npm): support peer dependencies (#16561) 2022-11-08 14:17:24 -05:00