Skip to content

Commit

Permalink
[core] Fix pnpm install instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jul 25, 2023
1 parent 6a7875b commit f35ac1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function getUpgradeMessage(packageManager: PackageManager | null): string {
case 'yarn':
return `yarn add ${pkgName}`;
case 'pnpm':
return `pnpm install ${pkgName}`;
return `pnpm add ${pkgName}`;
default:
return `npm install ${pkgName}`;
}
Expand Down

0 comments on commit f35ac1c

Please sign in to comment.