Here the situation : I work on a library that has dependencies which themselves have peer-dependencies.
When doing a pnpm install
, of course I have an error because of unresolved peer-dependencies.
Also, the library does not use these peer-dependencies.
What should I do ? use .npmrc
to auto-install them ? forward them as peer-dependency ?
another thing ?
(Note : the library was initially using npm)