Skip to content

Commit

Permalink
fix: pnpm remove used wrong package manager (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister authored Apr 15, 2024
1 parent 671c7ee commit 5d9b0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class Pnpm implements PackageManager {

async remove(packages: JsrPackage[]) {
await execWithLog(
"yarn",
"pnpm",
["remove", ...packages.map((pkg) => pkg.toString())],
this.cwd,
);
Expand Down

0 comments on commit 5d9b0d7

Please sign in to comment.