@graphql-inspector/introspect-command 3.3.0 → 3.4.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/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -34,7 +34,7 @@ function handler({ schema: unsortedSchema, output, comments, }) {
|
|
|
34
34
|
});
|
|
35
35
|
logger.Logger.success(`Saved to ${filepath}`);
|
|
36
36
|
}
|
|
37
|
-
const index = commands.createCommand(
|
|
37
|
+
const index = commands.createCommand(api => {
|
|
38
38
|
const { loaders } = api;
|
|
39
39
|
return {
|
|
40
40
|
command: 'introspect <schema>',
|
package/index.mjs
CHANGED
|
@@ -30,7 +30,7 @@ function handler({ schema: unsortedSchema, output, comments, }) {
|
|
|
30
30
|
});
|
|
31
31
|
Logger.success(`Saved to ${filepath}`);
|
|
32
32
|
}
|
|
33
|
-
const index = createCommand(
|
|
33
|
+
const index = createCommand(api => {
|
|
34
34
|
const { loaders } = api;
|
|
35
35
|
return {
|
|
36
36
|
command: 'introspect <schema>',
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-inspector/introspect-command",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "Introspects GraphQL Schema",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@graphql-inspector/commands": "3.
|
|
11
|
-
"@graphql-inspector/core": "3.
|
|
12
|
-
"@graphql-inspector/logger": "3.
|
|
10
|
+
"@graphql-inspector/commands": "3.4.0",
|
|
11
|
+
"@graphql-inspector/core": "3.4.0",
|
|
12
|
+
"@graphql-inspector/logger": "3.4.0",
|
|
13
13
|
"tslib": "^2.0.0"
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|