Skip to content

Commit 165ebe4

Browse files
committed
Fix function tests handle case yarn version is less than 2
1 parent 0a8394a commit 165ebe4

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

src/yarn-commands.ts

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
import { debug, runCommand } from './misc-utils.js';
1+
import { debug, runCommand, getStdoutFromCommand } from './misc-utils.js';
2+
3+
/**
4+
* Checks the current Yarn version.
5+
*
6+
* @returns A promise that resolves to the Yarn version string.
7+
* @throws An execa error object if the command fails in some way.
8+
*/
9+
export async function getYarnVersion(): Promise<string> {
10+
return await getStdoutFromCommand('yarn', ['--version']);
11+
}
212

313
/**
414
* Runs `yarn constraints --fix` to fix any constraint issues.
@@ -10,10 +20,17 @@ import { debug, runCommand } from './misc-utils.js';
1020
export async function fixConstraints(
1121
repositoryDirectoryPath: string,
1222
): Promise<void> {
13-
debug('Fixing constraints...');
14-
await runCommand('yarn', ['constraints', '--fix'], {
15-
cwd: repositoryDirectoryPath,
16-
});
23+
const version = await getYarnVersion();
24+
const majorVersion = parseInt(version.split('.')[0], 10);
25+
26+
if (majorVersion >= 2) {
27+
await runCommand('yarn', ['constraints', '--fix'], {
28+
cwd: repositoryDirectoryPath,
29+
});
30+
debug('Yarn constraints fixed successfully.');
31+
} else {
32+
debug('Skipping constraints fix as Yarn version is less than 2.');
33+
}
1734
}
1835

1936
/**

0 commit comments

Comments
 (0)