@graphql-codegen/cli 2.12.1 → 2.12.2-alpha-20220926134526-d6df4f5dd

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/hooks.js CHANGED
@@ -51,6 +51,8 @@ function execShellCommand(cmd) {
51
51
  }, (error, stdout, stderr) => {
52
52
  if (error) {
53
53
  reject(error);
54
+ // eslint-disable-next-line no-console
55
+ console.error(error);
54
56
  }
55
57
  else {
56
58
  (0, debugging_js_1.debugLog)(stdout || stderr);
package/esm/hooks.js CHANGED
@@ -48,6 +48,8 @@ function execShellCommand(cmd) {
48
48
  }, (error, stdout, stderr) => {
49
49
  if (error) {
50
50
  reject(error);
51
+ // eslint-disable-next-line no-console
52
+ console.error(error);
51
53
  }
52
54
  else {
53
55
  debugLog(stdout || stderr);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-codegen/cli",
3
- "version": "2.12.1",
3
+ "version": "2.12.2-alpha-20220926134526-d6df4f5dd",
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
  },