@graphcommerce/cli 1.0.7 → 1.0.10

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,23 @@
1
1
  # @graphcommerce/cli
2
2
 
3
+ ## 1.0.10
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1614](https://github.com/graphcommerce-org/graphcommerce/pull/1614) [`448c77681`](https://github.com/graphcommerce-org/graphcommerce/commit/448c77681f9a7794e84ec93139d7e0f16afafbd9) Thanks [@paales](https://github.com/paales)! - Update mesh versions
8
+
9
+ ## 1.0.9
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1607](https://github.com/graphcommerce-org/graphcommerce/pull/1607) [`b7009c3eb`](https://github.com/graphcommerce-org/graphcommerce/commit/b7009c3ebf4e4062eeaa00eaae8d572725d3eeb1) Thanks [@paales](https://github.com/paales)! - Add proper exit code to codegen
14
+
15
+ ## 1.0.8
16
+
17
+ ### Patch Changes
18
+
19
+ - [#1598](https://github.com/graphcommerce-org/graphcommerce/pull/1598) [`707dbc73d`](https://github.com/graphcommerce-org/graphcommerce/commit/707dbc73d181204d88fdbbd2e09340e25b2b5f7b) Thanks [@paales](https://github.com/paales)! - Upgraded dependencies
20
+
3
21
  ## 1.0.7
4
22
 
5
23
  ### Patch Changes
package/bin/codegen.ts CHANGED
@@ -7,8 +7,8 @@ const [, , cmd] = process.argv
7
7
  // console.log(process.argv)
8
8
 
9
9
  runCli(cmd)
10
- .then(() => {
11
- process.exit(0)
10
+ .then((result) => {
11
+ process.exit(result)
12
12
  })
13
13
  .catch((error) => {
14
14
  cliError(error)
@@ -5,8 +5,8 @@ const cli_1 = require("@graphql-codegen/cli");
5
5
  const [, , cmd] = process.argv;
6
6
  // console.log(process.argv)
7
7
  (0, cli_1.runCli)(cmd)
8
- .then(() => {
9
- process.exit(0);
8
+ .then((result) => {
9
+ process.exit(result);
10
10
  })
11
11
  .catch((error) => {
12
12
  (0, cli_1.cliError)(error);
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": "1.0.7",
5
+ "version": "1.0.10",
6
6
  "author": "",
7
7
  "license": "MIT",
8
8
  "scripts": {
@@ -19,13 +19,13 @@
19
19
  "graphql-code-generator": "dist/bin/codegen.js"
20
20
  },
21
21
  "dependencies": {
22
- "@graphql-codegen/cli": "2.8.0",
23
- "@graphql-mesh/cli": "0.75.2",
24
- "@graphql-mesh/types": "0.78.4",
25
- "@graphql-mesh/utils": "0.37.5"
22
+ "@graphql-codegen/cli": "2.11.8",
23
+ "@graphql-mesh/cli": "0.76.2",
24
+ "@graphql-mesh/types": "0.80.2",
25
+ "@graphql-mesh/utils": "0.40.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@graphcommerce/eslint-config-pwa": "^4.1.9",
28
+ "@graphcommerce/eslint-config-pwa": "^4.1.10",
29
29
  "@graphcommerce/prettier-config-pwa": "^4.0.6",
30
30
  "@graphcommerce/typescript-config-pwa": "^4.0.4",
31
31
  "@playwright/test": "^1.21.1",