Skip to content

Commit 3b70073

Browse files
committed
debugging
1 parent 306c2d1 commit 3b70073

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

build/main.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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}`);

src/main.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)