From 7aa3bde170eeba4482450ef67d0c072feea13d13 Mon Sep 17 00:00:00 2001 From: Tom Najdek Date: Wed, 25 May 2022 19:37:20 +0200 Subject: [PATCH] On error, ring the bell Should help with noticing syntax errors etc. --- scripts/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/utils.js b/scripts/utils.js index 969711b1c1..e9c88bd73b 100644 --- a/scripts/utils.js +++ b/scripts/utils.js @@ -11,6 +11,7 @@ const NODE_ENV = process.env.NODE_ENV; function onError(err) { + console.log('\u0007'); //🔔 console.log(colors.red('Error:'), err); }