Skip to content
This repository was archived by the owner on Sep 19, 2025. It is now read-only.

Commit 267cc25

Browse files
[skip ci] Allow the release workflow to mutate the yarn.lock file
1 parent 799cec3 commit 267cc25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-scripts/version-packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ for (const packageName of packages) {
7878
childProcess.execSync(`git add "${packageJsonPath}"`, {stdio: 'inherit'});
7979
}
8080

81-
childProcess.execSync(`yarn install`, {stdio: 'inherit'});
81+
childProcess.execSync(`yarn install --no-immutable`, {stdio: 'inherit'});
8282
childProcess.execSync(`git add "${path.resolve(__dirname, '../yarn.lock')}"`, {stdio: 'inherit'});
8383
childProcess.execSync(`git commit -m "v${newVersion.toString()}"`, {stdio: 'inherit'});
8484
childProcess.execSync(`git tag -a v${newVersion.toString()} -m "v${newVersion.toString()}"`, {stdio: 'inherit'});

0 commit comments

Comments
 (0)