Skip to content

Commit 5d9b0d7

Browse files
fix: pnpm remove used wrong package manager (#74)
1 parent 671c7ee commit 5d9b0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pkg_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class Pnpm implements PackageManager {
145145

146146
async remove(packages: JsrPackage[]) {
147147
await execWithLog(
148-
"yarn",
148+
"pnpm",
149149
["remove", ...packages.map((pkg) => pkg.toString())],
150150
this.cwd,
151151
);

0 commit comments

Comments
 (0)