Skip to content

Commit

Permalink
Logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
psmyrek committed Nov 21, 2024
1 parent 12b6b5a commit b08cb3d
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,20 @@ export default async function executeInParallel( options ) {
defaultAbortController = registerAbortController();
}

let exit = false;

try {
console.log( 'pathToFileURL().href = ', url.pathToFileURL( callbackModule ).href );
} catch ( e ) {
console.log( 'Unable to convert path to URL.' );
console.log( e );
console.log( 'cwd = ', cwd );
console.log( 'callbackModule = ', callbackModule );

exit = true;
}

if ( exit ) {
return;
}

const workers = packagesInThreads.map( packages => {
Expand Down

0 comments on commit b08cb3d

Please sign in to comment.