Skip to content

Commit 7bbad22

Browse files
Merge pull request #14 from aligent/feature/debug-install
MI-206: Use -immutable for Yarn installs
2 parents 9ac3e5a + e06f4af commit 7bbad22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/packageManagers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type PackageManager = (typeof supportedPackageManagers)[number];
77
const installCommands: Record<PackageManager, string> = {
88
npm: 'npm ci',
99
pnpm: 'pnpm install --frozen-lockfile',
10-
yarn: 'yarn install --frozen-lockfile',
10+
yarn: 'yarn install --immutable',
1111
};
1212
const debugFlags: Record<PackageManager, string> = {
1313
npm: '--verbose',

0 commit comments

Comments
 (0)