build: use --frozen-lockfile flag to avoid lockfile generation / updation (#33026)
This commit is contained in:
parent
7bb08e9d07
commit
81ebf219c3
1 changed files with 1 additions and 1 deletions
|
|
@ -523,7 +523,7 @@ function run_build_command_for_apps(apps) {
|
|||
log(
|
||||
`\nInstalling dependencies for ${chalk.bold(app)} (because node_modules not found)`
|
||||
);
|
||||
execSync("yarn install", { encoding: "utf8", stdio: "inherit" });
|
||||
execSync("yarn install --frozen-lockfile", { encoding: "utf8", stdio: "inherit" });
|
||||
}
|
||||
|
||||
log("\nRunning build command for", chalk.bold(app));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue