We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05bf600 commit 06aa342Copy full SHA for 06aa342
bin/compile-config.ts
@@ -54,4 +54,7 @@ if (args.e) {
54
const scanGlobal: boolean = !!args.g;
55
56
compileConfig({ mainModulePath, scanGlobal }, configPath, configStreamRaw, configResourceUri,
57
- exportVariableName).then(console.log).catch(console.error);
+ exportVariableName).then(console.log).catch((e) => {
58
+ console.error(e);
59
+ process.exit(1);
60
+ });
0 commit comments