Ignore specific package(s) when doing an overall pnpm i
at the top level of monorepo
#9091
Unanswered
jimfilippou
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a monorepo with many packages that depend on eachother, let's assume there is a
core
andproject-a
andproject-b
with this relationship.One day client decides to shut down
project-b
or the project is considered finished. The question is, when I dopnpm i
at the root level how can I specifically tell pnpm to ignore this since it's not an active project anymore and nothing depends on it.This can be benefitial if apps are using very different npm packages, for example one vuejs and one react. When I do
pnpm i
I am fetching around 1700+ packages (react, vue, etc.) and I am looking to lower this number.My
pnpm-workspace.yaml
has nothing weird or custom, it's pretty standard.Thank you for taking the time to check this!
Beta Was this translation helpful? Give feedback.
All reactions