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
+ }
2
12
3
13
/**
4
14
* Runs `yarn constraints --fix` to fix any constraint issues.
@@ -10,10 +20,17 @@ import { debug, runCommand } from './misc-utils.js';
10
20
export async function fixConstraints (
11
21
repositoryDirectoryPath : string ,
12
22
) : 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
+ }
17
34
}
18
35
19
36
/**
0 commit comments