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 726b4ba commit 2a8180fCopy full SHA for 2a8180f
src/utilities/findBreakingChanges.ts
@@ -186,7 +186,8 @@ function findTypeChanges(
186
type: BreakingChangeType.TYPE_REMOVED,
187
description: isSpecifiedScalarType(oldType)
188
? `Standard scalar ${oldType.name} was removed because it is not referenced anymore.`
189
- : isSpecifiedEnumType(oldType)
+ : /* c8 ignore next 2 */
190
+ isSpecifiedEnumType(oldType)
191
? `Standard enum ${oldType.name} was removed because it is not referenced anymore.`
192
: `${oldType.name} was removed.`,
193
});
0 commit comments