emit exit code only in lint mode

This commit is contained in:
Tobias Koppers 2018-09-20 18:00:11 +02:00
джерело 1f6b92de3e
коміт 44955b7600
3 змінених файлів з 3 додано та 3 видалено

@ -65,8 +65,8 @@ const makeDefinitionsForSchema = absSchemaPath => {
"/"
)}.d.ts need to be updated`
);
process.exitCode = 1;
}
process.exitCode = 1;
}
},
err => {

@ -124,8 +124,8 @@ const formatSchema = schemaPath => {
console.error(
`schemas/${basename.replace(/\\/g, "/")} need to be updated`
);
process.exitCode = 1;
}
process.exitCode = 1;
}
});
};

@ -137,8 +137,8 @@ for (const sourceFile of program.getSourceFiles()) {
);
}
console.log();
process.exitCode = 1;
}
process.exitCode = 1;
}
}
}