From ad8cbcc75abfd627d71f3c679dc628f9982372db Mon Sep 17 00:00:00 2001 From: codecalm Date: Wed, 25 Jan 2023 23:29:53 +0100 Subject: [PATCH] check-unicodes script --- .build/check-icons-unicodes.mjs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.build/check-icons-unicodes.mjs b/.build/check-icons-unicodes.mjs index 5eccc6145..e7308055f 100644 --- a/.build/check-icons-unicodes.mjs +++ b/.build/check-icons-unicodes.mjs @@ -15,8 +15,6 @@ glob(path.join(ICONS_SRC_DIR, '*.svg'), {}, function(er, files) { if (matches[1]) { const unicode = matches[1] - console.log('unicode', unicode, unicodes.indexOf(unicode)); - if (unicode && unicodes.indexOf(unicode) === -1) { unicodes.push(unicode) } else { @@ -26,9 +24,6 @@ glob(path.join(ICONS_SRC_DIR, '*.svg'), {}, function(er, files) { throw new Error(`Icon ${file} don't have a unicode!`) } } - - - console.log('unicodes', unicodes); })