Skip to content

Commit a73c2c7

Browse files
authored
chore(ci): create yarn.lock on js repository (#321)
1 parent 832d12f commit a73c2c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release/process-release.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ const BEFORE_CLIENT_GENERATION: {
4848

4949
const BEFORE_CLIENT_COMMIT: { [lang: string]: BeforeClientCommitCommand } = {
5050
javascript: async ({ dir }) => {
51-
await run(`yarn`, { cwd: dir }); // generate `yarn.lock` file
51+
// https://github.com/yarnpkg/berry/issues/2948
52+
await run(`YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn`, { cwd: dir }); // generate `yarn.lock` file
5253
},
5354
};
5455

0 commit comments

Comments
 (0)