File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -24560,6 +24560,10 @@ async function run() {
2456024560 packageFilePath,
2456124561 workspacePath
2456224562 );
24563+ core4.info("Base package.json:");
24564+ core4.info(basePackageJson ? JSON.stringify(basePackageJson) : "None");
24565+ core4.info("Current package.json:");
24566+ core4.info(currentPackageJson ? JSON.stringify(currentPackageJson) : "None");
2456324567 const currentDeps = parseLockfile(lockfilePath, currentPackageLock);
2456424568 const baseDeps = parseLockfile(lockfilePath, basePackageLock);
2456524569 core4.info(`Dependency threshold set to ${dependencyThreshold}`);
Original file line number Diff line number Diff line change @@ -115,6 +115,11 @@ async function run(): Promise<void> {
115115 workspacePath
116116 ) ;
117117
118+ core . info ( 'Base package.json:' ) ;
119+ core . info ( basePackageJson ? JSON . stringify ( basePackageJson ) : 'None' ) ;
120+ core . info ( 'Current package.json:' ) ;
121+ core . info ( currentPackageJson ? JSON . stringify ( currentPackageJson ) : 'None' ) ;
122+
118123 const currentDeps = parseLockfile ( lockfilePath , currentPackageLock ) ;
119124 const baseDeps = parseLockfile ( lockfilePath , basePackageLock ) ;
120125
You can’t perform that action at this time.
0 commit comments