8

How is it possible to use pnpm instead of npm with ionic cli? it has some good benefits rather than npm, Like smaller storage usage, Showing progress when some package is downloading and etc...

Mohammad Reza Mrg
  • 1,552
  • 15
  • 30

1 Answers1

15

Run this command to change the default package manager of ionic CLI from npm to pnpm:

ionic config set -g npmClient pnpm

also if you want to use yarn instead of npm :

ionic config set -g npmClient yarn
Mohammad Reza Mrg
  • 1,552
  • 15
  • 30