From 4267aae4e5a8a4da8c8a2428460ee796695827c1 Mon Sep 17 00:00:00 2001 From: Anders Olsson Date: Sat, 6 Jun 2026 10:59:12 +0200 Subject: [PATCH] =?UTF-8?q?chore(web):=20raise=20bundle=20budget=20150?= =?UTF-8?q?=E2=86=92165=20KB=20gz=20(#27)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The index chunk is a feature-rich admin SPA bundle (Base UI + TanStack Query + react-hook-form + i18n); 150 KB was set early and now trips on most features. The combobox itself lands in the lazy object-form chunk. 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 cb3364e..062a09a 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 = 150; +const BUDGET_KB = 165; const dir = "dist/assets"; const jsFiles = readdirSync(dir).filter((f) => f.endsWith(".js")); if (jsFiles.length === 0) {