Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar committed Oct 29, 2023
1 parent 2fb4fea commit 2ca1ac4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/core/src/yarn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,9 @@ export async function removeYarnPlugin({
}

export async function getYarnPlugins({ directory }: { directory: string }) {
const { stdout } = await runYarnCmd(
["plugin", "plugin", "runtime", "--json"],
{ directory },
);
const { stdout } = await runYarnCmd(["plugin", "runtime", "--json"], {
directory,
});

return stdout.split("\n").reduce((acc, line) => {
try {
Expand Down

0 comments on commit 2ca1ac4

Please sign in to comment.