We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cbe58b commit 7eedb02Copy full SHA for 7eedb02
scripts/check_api_changes.ts
@@ -84,5 +84,10 @@ validationResults.forEach((result) => {
84
});
85
86
if (errors.length > 0) {
87
- throw new AggregateError(errors, 'There are validation failures');
+ throw new AggregateError(
88
+ errors,
89
+ `Breaking API changes detected. See below for details.
90
+ If these changes are intentional, this is okay.
91
+ Otherwise, update the PR to remove the unintentional breaks`
92
+ );
93
}
0 commit comments