Let’s say I want to install a package in a specific package in my monorepo, how do I do this from root?
in npm, you can do this with something like this:
JavaScript
x
2
1
npm install react --workspace=a
2
I searched the docs and I can’t find a way to do this in pnpm.
Advertisement
Answer
It is called “filtering” in pnpm docs (see it here).
In this case, you would run:
JavaScript
1
2
1
pnpm --filter=a add react
2
or
JavaScript
1
2
1
pnpm -F=a add react
2