From e96797663a3747bec26e814114e884a92fc86d42 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 30 Dec 2022 23:27:23 +0300 Subject: [PATCH] Update update.js Should fix the width of the columns --- scripts/commands/readme/update.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/commands/readme/update.js b/scripts/commands/readme/update.js index e70f7f30..157ed92d 100644 --- a/scripts/commands/readme/update.js +++ b/scripts/commands/readme/update.js @@ -52,11 +52,7 @@ async function main() { }) data = Object.values(_.groupBy(data, item => item[0])) - const output = table.create(data, [ - 'Country                         ', - 'Channels', - 'EPG' - ]) + const output = table.create(data, ['Country', 'Channels', 'EPG']) await file.create('./.readme/_countries.md', output)