From 7ecc3888c8b8c54e126fc06cdeeffc4703738ff0 Mon Sep 17 00:00:00 2001 From: jerrykingxyz Date: Tue, 31 Oct 2023 11:50:29 +0800 Subject: [PATCH] fix: pnpm install failed --- lib/rspack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rspack.js b/lib/rspack.js index 75979b91..cd3407b0 100644 --- a/lib/rspack.js +++ b/lib/rspack.js @@ -40,7 +40,7 @@ export async function buildRspack(remote, branch) { console.log("== install deps =="); await runCommand("pnpm", ["--version"]); - await runCommand("pnpm", ["install"]); + await runCommand("pnpm", ["install", "--no-frozen-lockfile"]); console.log("== build rspack =="); await runCommand("npm", ["run", "build:cli:release"]);