@graphql-tools/load 7.5.1-alpha-b9b6301d.0 → 7.5.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.
- package/index.js +2 -7
- package/index.mjs +2 -7
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -47,13 +47,8 @@ function normalizePointers(unnormalizedPointerOrPointers) {
|
|
|
47
47
|
handlePointer(rawPointer);
|
|
48
48
|
}
|
|
49
49
|
else if (typeof rawPointer === 'object') {
|
|
50
|
-
|
|
51
|
-
handlePointer(
|
|
52
|
-
}
|
|
53
|
-
else {
|
|
54
|
-
for (const [path, options] of Object.entries(rawPointer)) {
|
|
55
|
-
handlePointer(path, options);
|
|
56
|
-
}
|
|
50
|
+
for (const [path, options] of Object.entries(rawPointer)) {
|
|
51
|
+
handlePointer(path, options);
|
|
57
52
|
}
|
|
58
53
|
}
|
|
59
54
|
else {
|
package/index.mjs
CHANGED
|
@@ -22,13 +22,8 @@ function normalizePointers(unnormalizedPointerOrPointers) {
|
|
|
22
22
|
handlePointer(rawPointer);
|
|
23
23
|
}
|
|
24
24
|
else if (typeof rawPointer === 'object') {
|
|
25
|
-
|
|
26
|
-
handlePointer(
|
|
27
|
-
}
|
|
28
|
-
else {
|
|
29
|
-
for (const [path, options] of Object.entries(rawPointer)) {
|
|
30
|
-
handlePointer(path, options);
|
|
31
|
-
}
|
|
25
|
+
for (const [path, options] of Object.entries(rawPointer)) {
|
|
26
|
+
handlePointer(path, options);
|
|
32
27
|
}
|
|
33
28
|
}
|
|
34
29
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/load",
|
|
3
|
-
"version": "7.5.1
|
|
3
|
+
"version": "7.5.1",
|
|
4
4
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@graphql-tools/schema": "8.3.1",
|
|
11
|
-
"@graphql-tools/utils": "^8.
|
|
11
|
+
"@graphql-tools/utils": "^8.6.0",
|
|
12
12
|
"p-limit": "3.1.0",
|
|
13
13
|
"tslib": "~2.3.0"
|
|
14
14
|
},
|