Skip to content

Commit 85ec996

Browse files
authored
Skip pnpm repos for now (#73)
1 parent d1e16fd commit 85ec996

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -680,6 +680,10 @@ async function installPackages(repoDir: string, commands: readonly ip.InstallCom
680680
for (const { directory: packageRoot, tool, arguments: args } of commands) {
681681
if (timedOut) break;
682682

683+
if (tool === ip.InstallTool.Pnpm) {
684+
throw new Error("Skipping pnpm for now");
685+
}
686+
683687
usedYarn = usedYarn || tool === ip.InstallTool.Yarn;
684688

685689
const elapsedMs = performance.now() - startMs;

0 commit comments

Comments
 (0)