there is a node_modules folder under the .pnpm folder, What is the purpose of this node_modules #4987
-
there is a node_modules folder under the .pnpm folder, What is the purpose of this node_modules |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
This comment has been hidden.
This comment has been hidden.
-
Some dependencies are broken, they use packages that are not in their dependencies, so we create a hoisted node_modules at |
Beta Was this translation helpful? Give feedback.
-
1、由于历史原因以及 |
Beta Was this translation helpful? Give feedback.
Some dependencies are broken, they use packages that are not in their dependencies, so we create a hoisted node_modules at
node_modules/.pnpm/node_modules
. You can control what package are hoisted there with thehoist-pettern
setting.