From c997412f736e5376c5d58f645906378f99925392 Mon Sep 17 00:00:00 2001 From: abose Date: Fri, 31 Jul 2026 21:12:03 +0530 Subject: [PATCH] build: bump dist/brackets.js prod size limit to 12 MB --- gulpfile.js/validate-build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js/validate-build.js b/gulpfile.js/validate-build.js index d3911a7492..55bf8bf853 100644 --- a/gulpfile.js/validate-build.js +++ b/gulpfile.js/validate-build.js @@ -40,7 +40,7 @@ const PROD_MAX_TOTAL_SIZE_MB = 80; // for the aggregate/total). Bump a limit only enough to restore that margin when a file legitimately // grows - don't pad it large, so unexpected size jumps still get caught. const LARGE_FILE_LIST_PROD = { - 'dist/brackets.js': 11, // this is the full minified file itself renamed in prod (~10 MB + 1 MB margin) + 'dist/brackets.js': 12, // this is the full minified file itself renamed in prod (~11 MB + 1 MB margin) 'dist/phoenix/virtualfs.js.map': 3 };