We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f3986 commit 9432ec7Copy full SHA for 9432ec7
bin/graphql-codegen-hook.js
@@ -38,12 +38,12 @@ const shouldExecute = fileMatches.length > 0;
38
39
if (!shouldExecute) {
40
if (verbose) {
41
- shell.echo('No matching files found requires: js(x)|ts(x)');
+ console.log('No matching files found requires: js(x)|ts(x)');
42
}
43
return 0;
44
} else {
45
46
- shell.echo(`Matching files found: ${fileMatches.join(", ")}`);
+ console.log(`Matching files found: ${fileMatches.join(", ")}`);
47
48
const basePath = shell.pwd().toString();
49
0 commit comments