From c7ed7e6d6424b67b8251a1f0fe9a8feca40f1006 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 19 Jan 2022 21:43:02 +0300 Subject: [PATCH] Update update-api.js --- scripts/commands/update-api.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/commands/update-api.js b/scripts/commands/update-api.js index e2d29cf6..f8631f87 100644 --- a/scripts/commands/update-api.js +++ b/scripts/commands/update-api.js @@ -6,7 +6,10 @@ const API_DIR = process.env.API_DIR || '.gh-pages/api' async function main() { await generateChannelsJson() - await generateProgramsJson() + + // Reason: File api/programs.json is 419.08 MB; this exceeds GitHub's file size limit of 100.00 MB + // await generateProgramsJson() + logger.info(`Done`) }