@graphcommerce/cli 9.0.0-canary.56 → 9.0.0-canary.57

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
+ ## 9.0.0-canary.57
4
+
3
5
  ## 9.0.0-canary.56
4
6
 
5
7
  ## 9.0.0-canary.55
@@ -28,15 +30,13 @@
28
30
 
29
31
  ### Patch Changes
30
32
 
31
- - [`44ea147`](https://github.com/graphcommerce-org/graphcommerce/commit/44ea1474d1429d05f535df903beb1fb2c0ca7754) - Added missing tsx package
32
- ([@paales](https://github.com/paales))
33
+ - [`44ea147`](https://github.com/graphcommerce-org/graphcommerce/commit/44ea1474d1429d05f535df903beb1fb2c0ca7754) - Added missing tsx package ([@paales](https://github.com/paales))
33
34
 
34
35
  ## 8.1.0-canary.43
35
36
 
36
37
  ### Patch Changes
37
38
 
38
- - [`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.
39
- ([@paales](https://github.com/paales))
39
+ - [`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))
40
40
 
41
41
  ## 8.1.0-canary.42
42
42
 
@@ -110,8 +110,7 @@
110
110
 
111
111
  ### Patch Changes
112
112
 
113
- - [#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.
114
- ([@paales](https://github.com/paales))
113
+ - [#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))
115
114
 
116
115
  ## 8.1.0-canary.7
117
116
 
@@ -251,8 +250,7 @@
251
250
 
252
251
  ### Patch Changes
253
252
 
254
- - [#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 …
255
- ([@FrankHarland](https://github.com/FrankHarland))
253
+ - [#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))
256
254
 
257
255
  ## 8.0.0-canary.75
258
256
 
package/dist/bin/mesh.js CHANGED
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  return (mod && mod.__esModule) ? mod : { "default": mod };
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.handleFatalError = void 0;
7
+ exports.handleFatalError = handleFatalError;
8
8
  /* eslint-disable import/no-extraneous-dependencies */
9
9
  const node_fs_1 = require("node:fs");
10
10
  const node_path_1 = __importDefault(require("node:path"));
@@ -25,7 +25,6 @@ function handleFatalError(e, logger = new utils_1.DefaultLogger('◈')) {
25
25
  if (process.env.JEST == null)
26
26
  (0, node_process_1.exit)(1);
27
27
  }
28
- exports.handleFatalError = handleFatalError;
29
28
  const root = process.cwd();
30
29
  const meshDir = node_path_1.default.dirname(require.resolve('@graphcommerce/graphql-mesh'));
31
30
  const relativePath = node_path_1.default.join(node_path_1.default.relative(meshDir, root), '/');
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.findConfig = void 0;
6
+ exports.findConfig = findConfig;
7
7
  /* eslint-disable import/no-extraneous-dependencies */
8
8
  const path_1 = __importDefault(require("path"));
9
9
  const utils_1 = require("@graphql-mesh/utils");
@@ -69,4 +69,3 @@ async function findConfig(options) {
69
69
  const { config } = results;
70
70
  return config;
71
71
  }
72
- exports.findConfig = findConfig;
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.56",
5
+ "version": "9.0.0-canary.57",
6
6
  "scripts": {
7
7
  "dev": "tsc --preserveWatchOutput --watch",
8
8
  "build": "tsc",
@@ -22,28 +22,28 @@
22
22
  "mesh": "dist/bin/mesh.js"
23
23
  },
24
24
  "dependencies": {
25
- "@graphql-codegen/cli": "5.0.1",
25
+ "@graphql-codegen/cli": "5.0.2",
26
26
  "@graphql-mesh/cli": "latest",
27
27
  "@graphql-mesh/cross-helpers": "latest",
28
28
  "@graphql-mesh/runtime": "latest",
29
29
  "@graphql-mesh/store": "latest",
30
30
  "@graphql-mesh/types": "latest",
31
31
  "@graphql-mesh/utils": "latest",
32
- "@graphql-tools/utils": "^10.0.12",
32
+ "@graphql-tools/utils": "^10.3.2",
33
33
  "cosmiconfig": "^8.3.6",
34
- "detect-package-manager": "^3.0.1",
35
- "graphql-codegen-typescript-validation-schema": "^0.14.1",
34
+ "detect-package-manager": "^3.0.2",
35
+ "graphql-codegen-typescript-validation-schema": "^0.15.0",
36
36
  "graphql-tag": "^2.12.6",
37
- "rimraf": "^5.0.5",
38
- "tslib": "^2.6.2",
37
+ "rimraf": "^5.0.9",
38
+ "tslib": "^2.6.3",
39
39
  "tsx": "^4.16.2"
40
40
  },
41
41
  "peerDependencies": {
42
- "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.56",
43
- "@graphcommerce/hygraph-cli": "^9.0.0-canary.56",
44
- "@graphcommerce/next-config": "^9.0.0-canary.56",
45
- "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.56",
46
- "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.56",
42
+ "@graphcommerce/eslint-config-pwa": "^9.0.0-canary.57",
43
+ "@graphcommerce/hygraph-cli": "^9.0.0-canary.57",
44
+ "@graphcommerce/next-config": "^9.0.0-canary.57",
45
+ "@graphcommerce/prettier-config-pwa": "^9.0.0-canary.57",
46
+ "@graphcommerce/typescript-config-pwa": "^9.0.0-canary.57",
47
47
  "graphql": "^16.7.1",
48
48
  "react": "^18.2.0"
49
49
  },