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