@graphql-tools/graphql-tag-pluck 7.3.1 → 7.3.2-alpha-fbf97581.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/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +3 -5
- package/typings/index.d.ts +1 -1
package/cjs/index.js
CHANGED
|
@@ -8,7 +8,7 @@ const extname_js_1 = require("./libs/extname.js");
|
|
|
8
8
|
const visitor_js_1 = tslib_1.__importDefault(require("./visitor.js"));
|
|
9
9
|
const traverse_1 = tslib_1.__importDefault(require("@babel/traverse"));
|
|
10
10
|
const utils_js_1 = require("./utils.js");
|
|
11
|
-
const graphql_1 = require("graphql");
|
|
11
|
+
const graphql_1 = require("@graphql-tools/graphql");
|
|
12
12
|
function getDefault(module) {
|
|
13
13
|
return module.default || module;
|
|
14
14
|
}
|
package/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { getExtNameFromFilePath } from './libs/extname.js';
|
|
|
4
4
|
import createVisitor from './visitor.js';
|
|
5
5
|
import traversePkg from '@babel/traverse';
|
|
6
6
|
import { freeText } from './utils.js';
|
|
7
|
-
import { Source } from 'graphql';
|
|
7
|
+
import { Source } from '@graphql-tools/graphql';
|
|
8
8
|
function getDefault(module) {
|
|
9
9
|
return module.default || module;
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/graphql-tag-pluck",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.2-alpha-fbf97581.0",
|
|
4
4
|
"description": "Pluck graphql-tag template literals",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
-
"peerDependencies": {
|
|
7
|
-
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
8
|
-
},
|
|
9
6
|
"dependencies": {
|
|
7
|
+
"@graphql-tools/graphql": "0.1.0-alpha-fbf97581.0",
|
|
10
8
|
"@babel/parser": "^7.16.8",
|
|
11
9
|
"@babel/traverse": "^7.16.8",
|
|
12
10
|
"@babel/types": "^7.16.8",
|
|
13
|
-
"@graphql-tools/utils": "8.9.0",
|
|
11
|
+
"@graphql-tools/utils": "8.9.1-alpha-fbf97581.0",
|
|
14
12
|
"tslib": "^2.4.0"
|
|
15
13
|
},
|
|
16
14
|
"repository": {
|
package/typings/index.d.ts
CHANGED