Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.

Replace utilities/findBreakingChanges with noop exports

Changed files
+6 -2
alias
+4
CHANGELOG.md
··· 4 4 `MAJOR.MINOR.PATCH` version of the aliased `graphql` version on `npm`. 5 5 The prerelease is incremented to indicate changes in `graphql-web-lite`. 6 6 7 + ## 16.6.0-2 8 + 9 + - Replace `utilities/findBreakingChanges` with no-op code. 10 + 7 11 ## 16.6.0-1 8 12 9 13 - Replace `type/assertName` with a custom shim.
+2 -2
alias/utilities/findBreakingChanges.mjs
··· 26 26 ARG_DEFAULT_VALUE_CHANGE: 'ARG_DEFAULT_VALUE_CHANGE', 27 27 }; 28 28 29 - export function findBreakingChanges(oldSchema, newSchema) { 29 + export function findBreakingChanges(_oldSchema, _newSchema) { 30 30 return []; 31 31 } 32 32 33 - export function findDangerousChanges(oldSchema, newSchema) { 33 + export function findDangerousChanges(_oldSchema, _newSchema) { 34 34 return []; 35 35 }