You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently only support npm and yarn. pnpm is the new hotness, so we should support it as well.
Possible Implementation
The logic for which package manager commands to use lives in src/queries/getPackageManager.ts, so we would just need to add it as an option in the getPackageManager function and then add it's corresponding commands to the PACKAGE_MANAGER object in that file.
Also, many of the pnpm commands actually just fall through to using npm under the hood, so the implementation details should be very similar.
Code of Conduct
I agree to follow this project's Code of Conduct
The text was updated successfully, but these errors were encountered:
Describe your request
We currently only support
npm
andyarn
.pnpm
is the new hotness, so we should support it as well.Possible Implementation
The logic for which package manager commands to use lives in
src/queries/getPackageManager.ts
, so we would just need to add it as an option in thegetPackageManager
function and then add it's corresponding commands to thePACKAGE_MANAGER
object in that file.Also, many of the
pnpm
commands actually just fall through to usingnpm
under the hood, so the implementation details should be very similar.Code of Conduct
The text was updated successfully, but these errors were encountered: