Duane J
Duane J

Reputation: 1833

Is there an equivalent of 'yarn why' for pnpm?

There is a particular sub-dependency of my project that is failing to install properly in pnpm. I'm not sure why the dependency (es5-ext) is required.

When using yarn, I can ask "yarn why [package-name]" to find out why a package is needed.

Is there an equivalent in pnpm?

Upvotes: 3

Views: 887

Answers (1)

Zoltan Kochan
Zoltan Kochan

Reputation: 7706

pnpm why es5-ext will work with pnpm. See the docs: https://pnpm.io/cli/why

Upvotes: 3

Related Questions