graphql 16.7.0 → 16.7.1

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.
@@ -7,8 +7,6 @@ exports.instanceOf = void 0;
7
7
 
8
8
  var _inspect = require('./inspect.js');
9
9
 
10
- var _globalThis$process;
11
-
12
10
  /**
13
11
  * A replacement for instanceof which includes an error warning when multi-realm
14
12
  * constructors are detected.
@@ -18,10 +16,7 @@ var _globalThis$process;
18
16
  const instanceOf =
19
17
  /* c8 ignore next 6 */
20
18
  // FIXME: https://github.com/graphql/graphql-js/issues/2317
21
- ((_globalThis$process = globalThis.process) === null ||
22
- _globalThis$process === void 0
23
- ? void 0
24
- : _globalThis$process.env.NODE_ENV) === 'production'
19
+ globalThis.process && globalThis.process.env.NODE_ENV === 'production'
25
20
  ? function instanceOf(value, constructor) {
26
21
  return value instanceof constructor;
27
22
  }
@@ -1,5 +1,3 @@
1
- var _globalThis$process;
2
-
3
1
  import { inspect } from './inspect.mjs';
4
2
  /**
5
3
  * A replacement for instanceof which includes an error warning when multi-realm
@@ -11,10 +9,7 @@ import { inspect } from './inspect.mjs';
11
9
  export const instanceOf =
12
10
  /* c8 ignore next 6 */
13
11
  // FIXME: https://github.com/graphql/graphql-js/issues/2317
14
- ((_globalThis$process = globalThis.process) === null ||
15
- _globalThis$process === void 0
16
- ? void 0
17
- : _globalThis$process.env.NODE_ENV) === 'production'
12
+ globalThis.process && globalThis.process.env.NODE_ENV === 'production'
18
13
  ? function instanceOf(value, constructor) {
19
14
  return value instanceof constructor;
20
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphql",
3
- "version": "16.7.0",
3
+ "version": "16.7.1",
4
4
  "description": "A Query Language and Runtime which can target any service.",
5
5
  "license": "MIT",
6
6
  "main": "index",
package/version.js CHANGED
@@ -10,7 +10,7 @@ exports.versionInfo = exports.version = void 0;
10
10
  /**
11
11
  * A string containing the version of the GraphQL.js library
12
12
  */
13
- const version = '16.7.0';
13
+ const version = '16.7.1';
14
14
  /**
15
15
  * An object containing the components of the GraphQL.js version string
16
16
  */
@@ -19,7 +19,7 @@ exports.version = version;
19
19
  const versionInfo = Object.freeze({
20
20
  major: 16,
21
21
  minor: 7,
22
- patch: 0,
22
+ patch: 1,
23
23
  preReleaseTag: null,
24
24
  });
25
25
  exports.versionInfo = versionInfo;
package/version.mjs CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * A string containing the version of the GraphQL.js library
6
6
  */
7
- export const version = '16.7.0';
7
+ export const version = '16.7.1';
8
8
  /**
9
9
  * An object containing the components of the GraphQL.js version string
10
10
  */
@@ -12,6 +12,6 @@ export const version = '16.7.0';
12
12
  export const versionInfo = Object.freeze({
13
13
  major: 16,
14
14
  minor: 7,
15
- patch: 0,
15
+ patch: 1,
16
16
  preReleaseTag: null,
17
17
  });