Skip to content

Commit c8abb2e

Browse files
authored
chore(scripts): yarn install with --no-immutable to allow lockfile modification (#6662)
1 parent d61ab0a commit c8abb2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate-clients/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const {
142142
}
143143

144144
require("./customizations/workspaces-thin-client")();
145-
await spawnProcess("yarn", [], { cwd: REPO_ROOT, stdio: "inherit", env: { ...process.env, CI: "" } });
145+
await spawnProcess("yarn", ["install", "--no-immutable"], { cwd: REPO_ROOT, stdio: "inherit", env: { ...process.env, CI: "" } });
146146
require("../runtime-dependency-version-check/runtime-dep-version-check");
147147
} catch (e) {
148148
console.log(e);

0 commit comments

Comments
 (0)