@graphcommerce/cli 8.0.6 → 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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # @graphcommerce/cli
2
2
 
3
+ ## 8.0.7
4
+
3
5
  ## 8.0.6
4
6
 
5
7
  ## 8.0.5
@@ -124,8 +126,7 @@
124
126
 
125
127
  ### Patch Changes
126
128
 
127
- - [#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 …
128
- ([@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))
129
130
 
130
131
  ## 8.0.0-canary.75
131
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 = require.resolve('@graphcommerce/graphql-mesh/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.6",
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.6",
42
- "@graphcommerce/hygraph-cli": "^8.0.6",
43
- "@graphcommerce/next-config": "^8.0.6",
44
- "@graphcommerce/prettier-config-pwa": "^8.0.6",
45
- "@graphcommerce/typescript-config-pwa": "^8.0.6",
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 = require.resolve('@graphcommerce/graphql-mesh/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