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`) }