From 303c986d405eb08d874a6e80075588eca79ac876 Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Sun, 7 Jun 2026 13:35:35 +0200 Subject: [PATCH] =?UTF-8?q?chore(web):=20raise=20bundle=20budget=20180?= =?UTF-8?q?=E2=86=92250=20KB=20gz=20(#47)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generous ceiling so the budget stops blocking per-feature work (this is the third raise in three frontend milestones) while still catching gross regressions. A vendor-split / bundle audit can revisit always-loaded weight later. Co-Authored-By: Claude Opus 4.8 (1M context) --- web/scripts/check-bundle-size.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/scripts/check-bundle-size.mjs b/web/scripts/check-bundle-size.mjs index 73497ab..757c179 100644 --- a/web/scripts/check-bundle-size.mjs +++ b/web/scripts/check-bundle-size.mjs @@ -3,7 +3,7 @@ import { readdirSync, readFileSync } from "node:fs"; import { gzipSync } from "node:zlib"; import { join } from "node:path"; -const BUDGET_KB = 180; +const BUDGET_KB = 250; const dir = "dist/assets"; const jsFiles = readdirSync(dir).filter((f) => f.endsWith(".js")); if (jsFiles.length === 0) {