@graphql-codegen/cli 2.9.0 → 2.9.1-alpha-fca07d28c.0

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/cjs/cli.js CHANGED
@@ -40,7 +40,6 @@ async function runCli(cmd) {
40
40
  }
41
41
  catch (error) {
42
42
  await (0, hooks_js_1.lifecycleHooks)(context.getConfig().hooks).onError(error.toString());
43
- throw error;
44
43
  }
45
44
  }
46
45
  exports.runCli = runCli;
package/esm/cli.js CHANGED
@@ -14,7 +14,6 @@ export async function runCli(cmd) {
14
14
  }
15
15
  catch (error) {
16
16
  await lifecycleHooks(context.getConfig().hooks).onError(error.toString());
17
- throw error;
18
17
  }
19
18
  }
20
19
  export async function ensureGraphQlPackage() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-codegen/cli",
3
- "version": "2.9.0",
3
+ "version": "2.9.1-alpha-fca07d28c.0",
4
4
  "peerDependencies": {
5
5
  "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
6
6
  },