diff --git a/dist/index.js b/dist/index.js index 80e802c..6fb2b73 100644 --- a/dist/index.js +++ b/dist/index.js @@ -25854,6 +25854,7 @@ async function main(sourceRepo, targetRepo, dryRun, tokenForTargetRepo) { return; } function buildSourceCommitHistory(path, numCommits) { + console.log(`DEBUG - building source commit history for ${path} with max count ${numCommits}`); const output = []; const logOutput = (0, child_process_1.execSync)( // If you want to copy this formatting for debugging, it's: @@ -25868,6 +25869,7 @@ function buildSourceCommitHistory(path, numCommits) { return output; } function buildTargetCommitHistory(path, oldestDateInSourceCommitHistory) { + console.log(`DEBUG - building target commit history for ${path} with oldest date ${oldestDateInSourceCommitHistory.toISOString()}`); const output = []; try { const countingLogOutput = (0, child_process_1.execSync)(`git log --since=${oldestDateInSourceCommitHistory.toISOString()} --pretty=oneline`, { cwd: path }); diff --git a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache index 1b340be..115f864 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache and b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/index.js.cache b/node_modules/@vercel/ncc/dist/ncc/index.js.cache index b755d44..72b7ca9 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/index.js.cache and b/node_modules/@vercel/ncc/dist/ncc/index.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache index 1a0a146..cf99cc1 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache index d74b8a3..81ca004 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache index b331156..f17bb2f 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache differ diff --git a/src/main.ts b/src/main.ts index 9f4e1bf..85dc624 100644 --- a/src/main.ts +++ b/src/main.ts @@ -129,6 +129,7 @@ export async function main(sourceRepo: Repo, targetRepo: Repo, dryRun: boolean, } export function buildSourceCommitHistory(path: string, numCommits: number): Commit[] { + console.log(`DEBUG - building source commit history for ${path} with max count ${numCommits}`); const output: Commit[] = []; const logOutput = execSync( @@ -148,6 +149,7 @@ export function buildSourceCommitHistory(path: string, numCommits: number): Comm } export function buildTargetCommitHistory(path: string, oldestDateInSourceCommitHistory: Date): Commit[] { + console.log(`DEBUG - building target commit history for ${path} with oldest date ${oldestDateInSourceCommitHistory.toISOString()}`); const output: Commit[] = []; try {