On error, ring the bell

Should help with noticing syntax errors etc.
This commit is contained in:
Tom Najdek 2022-05-25 19:37:20 +02:00
parent eb5f2978cc
commit 7aa3bde170
No known key found for this signature in database
GPG key ID: EEC61A7B4C667D77

View file

@ -11,6 +11,7 @@ const NODE_ENV = process.env.NODE_ENV;
function onError(err) { function onError(err) {
console.log('\u0007'); //🔔
console.log(colors.red('Error:'), err); console.log(colors.red('Error:'), err);
} }