@graphql-tools/schema 8.3.1 → 8.3.2-alpha-85817943.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,4 +3,3 @@ https://www.graphql-tools.com/docs/api/modules/schema_src
3
3
 
4
4
  You can also learn more about Generating Executable Schemas in this chapter;
5
5
  https://www.graphql-tools.com/docs/generate-schema
6
-
package/index.js CHANGED
@@ -39,7 +39,6 @@ To disable this validator, use:
39
39
  throw new Error(message);
40
40
  }
41
41
  if (behavior === 'warn') {
42
- // eslint-disable-next-line no-console
43
42
  console.warn(message);
44
43
  }
45
44
  return;
@@ -69,7 +68,6 @@ function checkForResolveTypeResolver(schema, requireResolversForResolveType) {
69
68
  throw new Error(message);
70
69
  }
71
70
  if (requireResolversForResolveType === 'warn') {
72
- // eslint-disable-next-line no-console
73
71
  console.warn(message);
74
72
  }
75
73
  }
package/index.mjs CHANGED
@@ -35,7 +35,6 @@ To disable this validator, use:
35
35
  throw new Error(message);
36
36
  }
37
37
  if (behavior === 'warn') {
38
- // eslint-disable-next-line no-console
39
38
  console.warn(message);
40
39
  }
41
40
  return;
@@ -65,7 +64,6 @@ function checkForResolveTypeResolver(schema, requireResolversForResolveType) {
65
64
  throw new Error(message);
66
65
  }
67
66
  if (requireResolversForResolveType === 'warn') {
68
- // eslint-disable-next-line no-console
69
67
  console.warn(message);
70
68
  }
71
69
  }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/schema",
3
- "version": "8.3.1",
3
+ "version": "8.3.2-alpha-85817943.0",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
7
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/merge": "^8.2.1",
11
- "@graphql-tools/utils": "^8.5.1",
10
+ "@graphql-tools/merge": "8.2.2-alpha-85817943.0",
11
+ "@graphql-tools/utils": "8.6.1-alpha-85817943.0",
12
12
  "tslib": "~2.3.0",
13
13
  "value-or-promise": "1.0.11"
14
14
  },
@@ -32,6 +32,7 @@
32
32
  "./*": {
33
33
  "require": "./*.js",
34
34
  "import": "./*.mjs"
35
- }
35
+ },
36
+ "./package.json": "./package.json"
36
37
  }
37
38
  }