@graphql-tools/code-file-loader 8.1.5 → 8.1.6

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/code-file-loader",
3
- "version": "8.1.5",
3
+ "version": "8.1.6",
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 || ^17.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/graphql-tag-pluck": "8.3.4",
11
- "@graphql-tools/utils": "^10.5.6",
10
+ "@graphql-tools/graphql-tag-pluck": "8.3.5",
11
+ "@graphql-tools/utils": "^10.6.0",
12
12
  "globby": "^11.0.3",
13
13
  "tslib": "^2.4.0",
14
14
  "unixify": "^1.0.0"
@@ -5,11 +5,11 @@ import { DocumentNode, GraphQLSchema } from 'graphql';
5
5
  export declare function pickExportFromModule({ module, filepath }: {
6
6
  module: any;
7
7
  filepath: string;
8
- }): Promise<GraphQLSchema | DocumentNode | null>;
8
+ }): Promise<DocumentNode | GraphQLSchema | null>;
9
9
  /**
10
10
  * @internal
11
11
  */
12
12
  export declare function pickExportFromModuleSync({ module, filepath }: {
13
13
  module: any;
14
14
  filepath: string;
15
- }): GraphQLSchema | DocumentNode | null;
15
+ }): DocumentNode | GraphQLSchema | null;
@@ -5,11 +5,11 @@ import { DocumentNode, GraphQLSchema } from 'graphql';
5
5
  export declare function pickExportFromModule({ module, filepath }: {
6
6
  module: any;
7
7
  filepath: string;
8
- }): Promise<GraphQLSchema | DocumentNode | null>;
8
+ }): Promise<DocumentNode | GraphQLSchema | null>;
9
9
  /**
10
10
  * @internal
11
11
  */
12
12
  export declare function pickExportFromModuleSync({ module, filepath }: {
13
13
  module: any;
14
14
  filepath: string;
15
- }): GraphQLSchema | DocumentNode | null;
15
+ }): DocumentNode | GraphQLSchema | null;