There are many ways to create a node_modules directory. Your goal must be to create the most strict one but if that is not possible, there are options to make a loose node_modules as well.
#
The default setupBy default, pnpm v5 will create a semi-strict node_modules. Semi-strict means that your application will only be able to require packages that are added as dependencies to package.json
(with a few exceptions). However, your dependencies will be able to access any packages.
The default configuration looks like this:
; All packages are hoisted to node_modules/.pnpm/node_moduleshoist-pattern[]=*
; All types are hoisted to the root in order to make TypeScript happypublic-hoist-pattern[]=*types*
; All ESLint-related packages are hoisted to the root as wellpublic-hoist-pattern[]=*eslint*
#
Plug'n'Play. The strictest configurationpnpm supports Yarn's Plug'n'Play since v5.9. With PnP, both your application and the dependencies of your application will have access only to their declared dependencies. This is even stricter then setting hoist=false
because inside a monorepo, you're application will not be able to access even the dependencies of the root project.
To use Plug'n'Play, set these settings:
node-linker=pnpsymlink=false
#
A strict, traditional modules directoryIf you are not ready to use PnP yet, you can still be strict and only allow packages to access their own dependencies by setting the hoist configuration to false:
hoist=false
However, if some of your dependencies are trying to access packages that they don't have in dependencies, you have two options:
Create a
pnpmfile.js
and use a hook to add the missing dependency to the package's manifest.Add a pattern to the
hoist-pattern
setting. For instance, if the not found module isbabel-core
, add the following setting to.npmrc
:hoist-pattern[]=babel-core
#
The worst case - hoisting to the rootSome tools might not work even with the default configuration of pnpm, which hoists everything to the root of the virtual store and some packages to the root. In this case, you can hoist either everything or a subset of dependencies to the root of the modules directory.
Hoisting everything to the the root of node_modules:
shamefully-hoist=true
Hoisting only packages that match a pattern:
public-hoist-pattern[]=babel-*