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
···
`MAJOR.MINOR.PATCH` version of the aliased `graphql` version on `npm`.
The prerelease is incremented to indicate changes in `graphql-web-lite`.
+
## 16.6.0-2
+
+
- Replace `utilities/findBreakingChanges` with no-op code.
+
## 16.6.0-1
- Replace `type/assertName` with a custom shim.
+2 -2
alias/utilities/findBreakingChanges.mjs
···
ARG_DEFAULT_VALUE_CHANGE: 'ARG_DEFAULT_VALUE_CHANGE',
};
-
export function findBreakingChanges(oldSchema, newSchema) {
+
export function findBreakingChanges(_oldSchema, _newSchema) {
return [];
}
-
export function findDangerousChanges(oldSchema, newSchema) {
+
export function findDangerousChanges(_oldSchema, _newSchema) {
return [];
}