@graphcommerce/graphql-codegen-relay-optimizer-plugin 9.0.4-canary.0 → 9.0.4-canary.10

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,18 +1,26 @@
1
1
  # Change Log
2
2
 
3
- ## 9.0.4-canary.0
3
+ ## 9.0.4-canary.10
4
+
5
+ ## 9.0.4-canary.9
6
+
7
+ ## 9.0.4-canary.8
4
8
 
5
- ## 9.0.3
9
+ ## 9.0.4-canary.7
6
10
 
7
- ## 9.0.3-canary.0
11
+ ## 9.0.4-canary.6
8
12
 
9
- ## 9.0.2
13
+ ## 9.0.4-canary.5
10
14
 
11
- ## 9.0.2-canary.0
15
+ ## 9.0.4-canary.4
12
16
 
13
- ## 9.0.1
17
+ ## 9.0.4-canary.3
14
18
 
15
- ## 9.0.1-canary.1
19
+ ## 9.0.4-canary.2
20
+
21
+ ## 9.0.4-canary.1
22
+
23
+ ## 9.0.4-canary.0
16
24
 
17
25
  ## 9.0.0
18
26
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/graphql-codegen-relay-optimizer-plugin",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "9.0.4-canary.0",
5
+ "version": "9.0.4-canary.10",
6
6
  "description": "GraphQL Code Generator plugin for optimizing your GraphQL queries relay style.",
7
7
  "type": "commonjs",
8
8
  "main": "dist/index.js",
@@ -22,8 +22,8 @@
22
22
  "typescript": "5.7.2"
23
23
  },
24
24
  "peerDependencies": {
25
- "@graphcommerce/eslint-config-pwa": "^9.0.4-canary.0",
26
- "@graphcommerce/prettier-config-pwa": "^9.0.4-canary.0"
25
+ "@graphcommerce/eslint-config-pwa": "^9.0.4-canary.10",
26
+ "@graphcommerce/prettier-config-pwa": "^9.0.4-canary.10"
27
27
  },
28
28
  "prettier": "@graphcommerce/prettier-config-pwa",
29
29
  "eslint": {
package/src/index.ts CHANGED
@@ -11,7 +11,6 @@ import type { PluginFunction, Types } from '@graphql-codegen/plugin-helpers'
11
11
  import type { DefinitionNode, GraphQLSchema } from 'graphql'
12
12
  import { parse, printSchema, visit } from 'graphql'
13
13
 
14
- // eslint-disable-next-line @typescript-eslint/no-empty-interface
15
14
  export interface RelayOptimizerPluginConfig {}
16
15
 
17
16
  function isFragment(documentFile: Types.DocumentFile) {