@graphcommerce/cli 9.0.1-canary.0 → 9.0.1-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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # @graphcommerce/cli
2
2
 
3
- ## 9.0.1-canary.0
3
+ ## 9.0.1-canary.2
4
+
5
+ ## 9.0.1-canary.1
4
6
 
5
7
  ## 9.0.0
6
8
 
@@ -22,78 +24,6 @@
22
24
 
23
25
  - [#2365](https://github.com/graphcommerce-org/graphcommerce/pull/2365) [`ee32793`](https://github.com/graphcommerce-org/graphcommerce/commit/ee32793c5e8e7233b4452219e148ebb85600a652) - The mesh would always include all graphqls files even though they aren't necessary for Magento 2.4.7 ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
24
26
 
25
- ## 9.0.0-canary.118
26
-
27
- ## 9.0.0-canary.117
28
-
29
- ## 9.0.0-canary.116
30
-
31
- ## 9.0.0-canary.115
32
-
33
- ## 9.0.0-canary.114
34
-
35
- ## 9.0.0-canary.113
36
-
37
- ## 9.0.0-canary.112
38
-
39
- ## 9.0.0-canary.111
40
-
41
- ## 9.0.0-canary.110
42
-
43
- ## 9.0.0-canary.109
44
-
45
- ## 9.0.0-canary.108
46
-
47
- ## 9.0.0-canary.107
48
-
49
- ## 9.0.0-canary.106
50
-
51
- ## 9.0.0-canary.105
52
-
53
- ## 9.0.0-canary.104
54
-
55
- ## 9.0.0-canary.103
56
-
57
- ### Patch Changes
58
-
59
- - [#2421](https://github.com/graphcommerce-org/graphcommerce/pull/2421) [`d500643`](https://github.com/graphcommerce-org/graphcommerce/commit/d500643138799b6db1610cb10a1d065d6219d8ea) - Resolve peer dependency issues so we get a clean install ([@paales](https://github.com/paales))
60
-
61
- ## 9.0.0-canary.92
62
-
63
- ### Patch Changes
64
-
65
- - [#2365](https://github.com/graphcommerce-org/graphcommerce/pull/2365) [`ee32793`](https://github.com/graphcommerce-org/graphcommerce/commit/ee32793c5e8e7233b4452219e148ebb85600a652) - The mesh would always include all graphqls files even though they aren't necessary for Magento 2.4.7 ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
66
-
67
- ## 9.0.0-canary.71
68
-
69
- ### Patch Changes
70
-
71
- - [#2345](https://github.com/graphcommerce-org/graphcommerce/pull/2345) [`d4ae30b`](https://github.com/graphcommerce-org/graphcommerce/commit/d4ae30ba28815ccb9d3a0478da995b7c609618e5) - Solve issue where customFetch coudn’t be loaded correctly ([@paales](https://github.com/paales))
72
-
73
- ## 9.0.0-canary.59
74
-
75
- ### Minor Changes
76
-
77
- - [#2309](https://github.com/graphcommerce-org/graphcommerce/pull/2309) [`b46e17e`](https://github.com/graphcommerce-org/graphcommerce/commit/b46e17ebe390b4d0040639dfdac33c36a60576ac) - When generating the mesh the configuration is passed through `@graphcommerce/graphql-mesh/meshConfig` allowing plugins to modify the mesh configuration without having to change the `.meshrc.yaml` itself. ([@Renzovh](https://github.com/Renzovh))
78
-
79
- ## 8.1.0-canary.44
80
-
81
- ### Patch Changes
82
-
83
- - [`44ea147`](https://github.com/graphcommerce-org/graphcommerce/commit/44ea1474d1429d05f535df903beb1fb2c0ca7754) - Added missing tsx package ([@paales](https://github.com/paales))
84
-
85
- ## 8.1.0-canary.43
86
-
87
- ### Patch Changes
88
-
89
- - [`6184a28`](https://github.com/graphcommerce-org/graphcommerce/commit/6184a28b2ba2dc70189a9b881887696dc0a346c8) - Fixed issue where codegen would throw an error: SyntaxError: Cannot use import statement outside a module. ([@paales](https://github.com/paales))
90
-
91
- ## 8.1.0-canary.8
92
-
93
- ### Patch Changes
94
-
95
- - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`cfc0f4e`](https://github.com/graphcommerce-org/graphcommerce/commit/cfc0f4e015f3b3a7348b882eb7440222b3e26a07) - Make sure the interceptors are generated before the typecheck is ran. ([@paales](https://github.com/paales))
96
-
97
27
  ## 7.0.1
98
28
 
99
29
  ### Patch Changes
package/dist/bin/mesh.js CHANGED
@@ -40,7 +40,7 @@ function customLoader(ext, importFn = defaultImportFn, initialLoggerPrefix = "\u
40
40
  return loader;
41
41
  }
42
42
  async function findConfig(options) {
43
- const { configName = "mesh", dir: configDir = "", initialLoggerPrefix } = options || {};
43
+ const { configName = "mesh", dir: configDir = "", initialLoggerPrefix } = options;
44
44
  const dir = path.isAbsolute(configDir) ? configDir : path.join(process.cwd(), configDir);
45
45
  const explorer = cosmiconfig(configName, {
46
46
  searchPlaces: [
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": "9.0.1-canary.0",
5
+ "version": "9.0.1-canary.2",
6
6
  "scripts": {
7
7
  "dev": "pkgroll --watch",
8
8
  "build": "pkgroll",
@@ -29,12 +29,12 @@
29
29
  "yaml": "2.6.1"
30
30
  },
31
31
  "peerDependencies": {
32
- "@graphcommerce/eslint-config-pwa": "^9.0.1-canary.0",
33
- "@graphcommerce/graphql-mesh": "^9.0.1-canary.0",
34
- "@graphcommerce/hygraph-cli": "^9.0.1-canary.0",
35
- "@graphcommerce/next-config": "^9.0.1-canary.0",
36
- "@graphcommerce/prettier-config-pwa": "^9.0.1-canary.0",
37
- "@graphcommerce/typescript-config-pwa": "^9.0.1-canary.0",
32
+ "@graphcommerce/eslint-config-pwa": "^9.0.1-canary.2",
33
+ "@graphcommerce/graphql-mesh": "^9.0.1-canary.2",
34
+ "@graphcommerce/hygraph-cli": "^9.0.1-canary.2",
35
+ "@graphcommerce/next-config": "^9.0.1-canary.2",
36
+ "@graphcommerce/prettier-config-pwa": "^9.0.1-canary.2",
37
+ "@graphcommerce/typescript-config-pwa": "^9.0.1-canary.2",
38
38
  "@graphql-mesh/cli": "*",
39
39
  "@graphql-mesh/types": "*",
40
40
  "@graphql-mesh/utils": "*",