@graphcommerce/graphql-mesh 9.0.4-canary.0 → 9.0.4-canary.2
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 +3 -11
- package/package.json +4 -4
- package/plugins/meshConfigFake.ts +2 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/graphql-mesh",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.0.4-canary.
|
|
5
|
+
"version": "9.0.4-canary.2",
|
|
6
6
|
"main": "index.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@whatwg-node/fetch": "^0.10.1",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@apollo/client": "*",
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.
|
|
18
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.
|
|
19
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.4-canary.2",
|
|
18
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.4-canary.2",
|
|
19
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.4-canary.2",
|
|
20
20
|
"@graphql-mesh/runtime": "*",
|
|
21
21
|
"@graphql-mesh/types": "*"
|
|
22
22
|
},
|
|
@@ -7,6 +7,7 @@ export const config: PluginConfig = {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* This plugin does not apply any changes to the Mesh configuration, but solely exists to generate
|
|
10
|
+
* This plugin does not apply any changes to the Mesh configuration, but solely exists to generate
|
|
11
|
+
* the meshConfig.interceptor.ts file.
|
|
11
12
|
*/
|
|
12
13
|
export const meshConfig: FunctionPlugin<MeshConfigFunction> = (prev, ...args) => prev(...args)
|