@graphcommerce/graphql-codegen-near-operation-file 6.0.0 → 6.0.1-canary.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.0.1-canary.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1854](https://github.com/graphcommerce-org/graphcommerce/pull/1854) [`30e51025b`](https://github.com/graphcommerce-org/graphcommerce/commit/30e51025b64b8ace49b54979c18c6fa5b6ff0a10) - GraphQL Codegen would throw a very unhelpful error message because of skipDocumentsValidation, will now throw a more helpful error message. ([@paales](https://github.com/paales))
8
+
3
9
  ## 6.0.0
4
10
 
5
11
  ## 6.0.0-canary.54
package/dist/index.js CHANGED
@@ -100,7 +100,7 @@ exports.preset = {
100
100
  config,
101
101
  schema: options.schema,
102
102
  schemaAst: schemaObject,
103
- skipDocumentsValidation: true,
103
+ // skipDocumentsValidation: true,
104
104
  };
105
105
  });
106
106
  },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/graphql-codegen-near-operation-file",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "6.0.0",
5
+ "version": "6.0.1-canary.0",
6
6
  "sideEffects": false,
7
7
  "type": "commonjs",
8
8
  "main": "dist/index.js",
@@ -21,9 +21,9 @@
21
21
  }
22
22
  },
23
23
  "devDependencies": {
24
- "@graphcommerce/eslint-config-pwa": "6.0.0",
25
- "@graphcommerce/prettier-config-pwa": "6.0.0",
26
- "@graphcommerce/typescript-config-pwa": "6.0.0"
24
+ "@graphcommerce/eslint-config-pwa": "6.0.1-canary.0",
25
+ "@graphcommerce/prettier-config-pwa": "6.0.1-canary.0",
26
+ "@graphcommerce/typescript-config-pwa": "6.0.1-canary.0"
27
27
  },
28
28
  "dependencies": {
29
29
  "@graphql-codegen/add": "4.0.1",
package/src/index.ts CHANGED
@@ -260,7 +260,7 @@ export const preset: Types.OutputPreset<NearOperationFileConfig> = {
260
260
  config,
261
261
  schema: options.schema,
262
262
  schemaAst: schemaObject,
263
- skipDocumentsValidation: true,
263
+ // skipDocumentsValidation: true,
264
264
  }
265
265
  },
266
266
  )