File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const hasAllParam = process.argv.includes('--all');
40
40
* Check if lockfile has changed.
41
41
*/
42
42
const isLockfileChanged = ( ) => {
43
- const log = execSync ( 'git diff --name-only origin/main HEAD' ) . toString ( ) ;
43
+ const log = execSync ( 'git diff --name-only origin/24.3 HEAD' ) . toString ( ) ;
44
44
return log . split ( '\n' ) . some ( ( line ) => line . includes ( 'yarn.lock' ) ) ;
45
45
} ;
46
46
@@ -49,7 +49,7 @@ const isLockfileChanged = () => {
49
49
*/
50
50
const getChangedPackages = ( ) => {
51
51
const pathToLerna = path . normalize ( './node_modules/.bin/lerna' ) ;
52
- const output = execSync ( `${ pathToLerna } la --since origin/main --json --loglevel silent` ) ; // NOSONAR
52
+ const output = execSync ( `${ pathToLerna } la --since origin/24.3 --json --loglevel silent` ) ; // NOSONAR
53
53
return JSON . parse ( output . toString ( ) ) . map ( ( project ) => project . name . replace ( '@vaadin/' , '' ) ) ;
54
54
} ;
55
55
You can’t perform that action at this time.
0 commit comments