Skip to content

Commit

Permalink
stringify result
Browse files Browse the repository at this point in the history
  • Loading branch information
timolegros committed Nov 8, 2024
1 parent f355bd0 commit a881a11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ async function validateExternalApiVersioning() {
},
});
await Promise.all([unlink(productionOasPath), unlink(localOasPath)]);
console.log('OpenAPI spec diff:', result);
console.log('OpenAPI spec diff:', JSON.stringify(result, null, 2));

if (result.breakingDifferencesFound) {
throw Error('External API has breaking changes, update the Major version');
Expand Down

0 comments on commit a881a11

Please sign in to comment.