@graphcommerce/cli 8.0.6-canary.4 → 8.0.7
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 -10
- package/dist/bin/mesh.js +1 -1
- package/package.json +6 -6
- package/src/bin/mesh.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
# @graphcommerce/cli
|
|
2
2
|
|
|
3
|
-
## 8.0.
|
|
3
|
+
## 8.0.7
|
|
4
4
|
|
|
5
|
-
## 8.0.6
|
|
6
|
-
|
|
7
|
-
## 8.0.6-canary.2
|
|
8
|
-
|
|
9
|
-
## 8.0.6-canary.1
|
|
10
|
-
|
|
11
|
-
## 8.0.6-canary.0
|
|
5
|
+
## 8.0.6
|
|
12
6
|
|
|
13
7
|
## 8.0.5
|
|
14
8
|
|
|
@@ -132,8 +126,7 @@
|
|
|
132
126
|
|
|
133
127
|
### Patch Changes
|
|
134
128
|
|
|
135
|
-
- [#2130](https://github.com/graphcommerce-org/graphcommerce/pull/2130) [`83f0c34`](https://github.com/graphcommerce-org/graphcommerce/commit/83f0c346792992143ef533a2043d91a0d090e7b1) - fix: add graphql-codegen-typescript-validation-schema to resolutions …
|
|
136
|
-
([@FrankHarland](https://github.com/FrankHarland))
|
|
129
|
+
- [#2130](https://github.com/graphcommerce-org/graphcommerce/pull/2130) [`83f0c34`](https://github.com/graphcommerce-org/graphcommerce/commit/83f0c346792992143ef533a2043d91a0d090e7b1) - fix: add graphql-codegen-typescript-validation-schema to resolutions … ([@FrankHarland](https://github.com/FrankHarland))
|
|
137
130
|
|
|
138
131
|
## 8.0.0-canary.75
|
|
139
132
|
|
package/dist/bin/mesh.js
CHANGED
|
@@ -49,7 +49,7 @@ async function cleanup() {
|
|
|
49
49
|
const main = async () => {
|
|
50
50
|
const conf = (await (0, findConfig_1.findConfig)({}));
|
|
51
51
|
// We're configuring a custom fetch function
|
|
52
|
-
conf.customFetch =
|
|
52
|
+
conf.customFetch = '@graphcommerce/graphql-mesh/customFetch';
|
|
53
53
|
conf.serve = { ...conf.serve, endpoint: '/api/graphql' };
|
|
54
54
|
// Rewrite additionalResolvers so we can use module resolution more easily
|
|
55
55
|
conf.additionalResolvers = conf.additionalResolvers ?? [];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/cli",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.0.
|
|
5
|
+
"version": "8.0.7",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "tsc --preserveWatchOutput --watch",
|
|
8
8
|
"build": "tsc",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"tslib": "^2.6.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@graphcommerce/eslint-config-pwa": "^8.0.
|
|
42
|
-
"@graphcommerce/hygraph-cli": "^8.0.
|
|
43
|
-
"@graphcommerce/next-config": "^8.0.
|
|
44
|
-
"@graphcommerce/prettier-config-pwa": "^8.0.
|
|
45
|
-
"@graphcommerce/typescript-config-pwa": "^8.0.
|
|
41
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.7",
|
|
42
|
+
"@graphcommerce/hygraph-cli": "^8.0.7",
|
|
43
|
+
"@graphcommerce/next-config": "^8.0.7",
|
|
44
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.7",
|
|
45
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.7",
|
|
46
46
|
"graphql": "^16.7.1",
|
|
47
47
|
"react": "^18.2.0"
|
|
48
48
|
},
|
package/src/bin/mesh.ts
CHANGED
|
@@ -54,7 +54,7 @@ const main = async () => {
|
|
|
54
54
|
const conf = (await findConfig({})) as YamlConfig.Config
|
|
55
55
|
|
|
56
56
|
// We're configuring a custom fetch function
|
|
57
|
-
conf.customFetch =
|
|
57
|
+
conf.customFetch = '@graphcommerce/graphql-mesh/customFetch'
|
|
58
58
|
conf.serve = { ...conf.serve, endpoint: '/api/graphql' }
|
|
59
59
|
|
|
60
60
|
// Rewrite additionalResolvers so we can use module resolution more easily
|