@graphcommerce/cli 9.0.0-canary.89 → 9.0.0-canary.93

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,17 @@
1
1
  # @graphcommerce/cli
2
2
 
3
+ ## 9.0.0-canary.93
4
+
5
+ ## 9.0.0-canary.92
6
+
7
+ ### Patch Changes
8
+
9
+ - [#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))
10
+
11
+ ## 9.0.0-canary.91
12
+
13
+ ## 9.0.0-canary.90
14
+
3
15
  ## 9.0.0-canary.89
4
16
 
5
17
  ## 9.0.0-canary.88
package/dist/bin/mesh.js CHANGED
@@ -118,7 +118,10 @@ const main = async () => {
118
118
  return additionalTypeDef;
119
119
  });
120
120
  // Scan the current working directory to also read all graphqls files.
121
- conf.additionalTypeDefs.push('**/*.graphqls');
121
+ conf.additionalTypeDefs.push('graphql/**/*.graphqls');
122
+ conf.additionalTypeDefs.push('components/**/*.graphqls');
123
+ conf.additionalTypeDefs.push('lib/**/*.graphqls');
124
+ conf.additionalTypeDefs.push('app/**/*.graphqls');
122
125
  const deps = (0, next_config_1.resolveDependenciesSync)();
123
126
  const packages = [...deps.values()].filter((p) => p !== '.');
124
127
  const mV = graphCommerce.magentoVersion ?? 246;
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.0-canary.89",
5
+ "version": "9.0.0-canary.93",
6
6
  "scripts": {
7
7
  "dev": "tsc --preserveWatchOutput --watch",
8
8
  "build": "tsc",
@@ -39,11 +39,11 @@
39
39
  "tsx": "^4.16.2"
40
40
  },
41
41
  "peerDependencies": {
42
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.89",
43
- "@graphcommerce/hygraph-cli": "^9.0.0-canary.89",
44
- "@graphcommerce/next-config": "^9.0.0-canary.89",
45
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.89",
46
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.89",
42
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.93",
43
+ "@graphcommerce/hygraph-cli": "^9.0.0-canary.93",
44
+ "@graphcommerce/next-config": "^9.0.0-canary.93",
45
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.93",
46
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.93",
47
47
  "graphql": "^16.7.1",
48
48
  "react": "^18.2.0"
49
49
  },
package/src/bin/mesh.ts CHANGED
@@ -117,7 +117,10 @@ const main = async () => {
117
117
  })
118
118
 
119
119
  // Scan the current working directory to also read all graphqls files.
120
- conf.additionalTypeDefs.push('**/*.graphqls')
120
+ conf.additionalTypeDefs.push('graphql/**/*.graphqls')
121
+ conf.additionalTypeDefs.push('components/**/*.graphqls')
122
+ conf.additionalTypeDefs.push('lib/**/*.graphqls')
123
+ conf.additionalTypeDefs.push('app/**/*.graphqls')
121
124
 
122
125
  const deps = resolveDependenciesSync()
123
126
  const packages = [...deps.values()].filter((p) => p !== '.')