@graphql-eslint/eslint-plugin 3.10.6-alpha-939a185.0 → 3.10.8-alpha-20220804122234-d96a19a

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/testkit.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-eslint/eslint-plugin",
3
- "version": "3.10.6-alpha-939a185.0",
3
+ "version": "3.10.8-alpha-20220804122234-d96a19a",
4
4
  "description": "GraphQL plugin for ESLint",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -12,7 +12,7 @@
12
12
  "@graphql-tools/graphql-tag-pluck": "^7.2.6",
13
13
  "@graphql-tools/utils": "^8.6.9",
14
14
  "chalk": "^4.1.2",
15
- "debug": "^4.3.4",
15
+ "debug": "^4",
16
16
  "fast-glob": "^3.2.11",
17
17
  "graphql-config": "^4.3.0",
18
18
  "graphql-depth-limit": "^1.1.0",
package/testkit.d.ts CHANGED
@@ -11,6 +11,7 @@ export declare type GraphQLValidTestCase<Options> = Omit<RuleTester.ValidTestCas
11
11
  };
12
12
  export declare type GraphQLInvalidTestCase<T> = GraphQLValidTestCase<T> & {
13
13
  errors: number | (RuleTester.TestCaseError | string)[];
14
+ output?: string | null;
14
15
  };
15
16
  export declare class GraphQLRuleTester extends RuleTester {
16
17
  config: {