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() {
24560
24560
packageFilePath,
24561
24561
workspacePath
24562
24562
);
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");
24563
24567
const currentDeps = parseLockfile(lockfilePath, currentPackageLock);
24564
24568
const baseDeps = parseLockfile(lockfilePath, basePackageLock);
24565
24569
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> {
115
115
workspacePath
116
116
) ;
117
117
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
+
118
123
const currentDeps = parseLockfile ( lockfilePath , currentPackageLock ) ;
119
124
const baseDeps = parseLockfile ( lockfilePath , basePackageLock ) ;
120
125
You can’t perform that action at this time.
0 commit comments