@graphcommerce/graphql-codegen-near-operation-file 6.2.0-canary.39 → 6.2.0-canary.41

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.2.0-canary.41
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1960](https://github.com/graphcommerce-org/graphcommerce/pull/1960) [`86e14569b`](https://github.com/graphcommerce-org/graphcommerce/commit/86e14569b1f68f73be7f93b614e36b382c5debff) - Updated to the latest release of GraphQL codegen and solve compatibility issues with our own generator ([@paales](https://github.com/paales))
8
+
9
+ ## 6.2.0-canary.40
10
+
3
11
  ## 6.2.0-canary.39
4
12
 
5
13
  ## 6.2.0-canary.38
@@ -89,6 +89,7 @@ function injectInjectable(injectables, injector) {
89
89
  const spread = {
90
90
  kind: graphql_1.Kind.FRAGMENT_SPREAD,
91
91
  name: { kind: graphql_1.Kind.NAME, value: fragment.name.value },
92
+ directives: [],
92
93
  };
93
94
  frag.selectionSet.selections = [...frag.selectionSet.selections, spread];
94
95
  }
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.2.0-canary.39",
5
+ "version": "6.2.0-canary.41",
6
6
  "sideEffects": false,
7
7
  "type": "commonjs",
8
8
  "main": "dist/index.js",
@@ -21,15 +21,15 @@
21
21
  }
22
22
  },
23
23
  "devDependencies": {
24
- "@graphcommerce/eslint-config-pwa": "6.2.0-canary.39",
25
- "@graphcommerce/prettier-config-pwa": "6.2.0-canary.39",
26
- "@graphcommerce/typescript-config-pwa": "6.2.0-canary.39"
24
+ "@graphcommerce/eslint-config-pwa": "6.2.0-canary.41",
25
+ "@graphcommerce/prettier-config-pwa": "6.2.0-canary.41",
26
+ "@graphcommerce/typescript-config-pwa": "6.2.0-canary.41"
27
27
  },
28
28
  "dependencies": {
29
- "@graphql-codegen/add": "4.0.1",
30
- "@graphql-codegen/plugin-helpers": "4.1.0",
31
- "@graphql-codegen/visitor-plugin-common": "3.0.2",
32
- "@graphql-tools/utils": "^9.2.1",
29
+ "@graphql-codegen/add": "5.0.0",
30
+ "@graphql-codegen/plugin-helpers": "5.0.0",
31
+ "@graphql-codegen/visitor-plugin-common": "4.0.0",
32
+ "@graphql-tools/utils": "^10.0.1",
33
33
  "@types/parse-filepath": "^1.0.0",
34
34
  "graphql": "16.6.0",
35
35
  "parse-filepath": "^1.0.2"
@@ -97,6 +97,7 @@ function injectInjectable(injectables: DocumentNode[], injector: DocumentNode) {
97
97
  const spread: FragmentSpreadNode = {
98
98
  kind: Kind.FRAGMENT_SPREAD,
99
99
  name: { kind: Kind.NAME, value: fragment.name.value },
100
+ directives: [],
100
101
  }
101
102
  frag.selectionSet.selections = [...frag.selectionSet.selections, spread]
102
103
  }