From fd271bb6986c8b65b261d671918c35f832bfb20a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 10 Jul 2026 18:48:55 +0000 Subject: [PATCH] fix(release): raise prepared package size limit to 96 MB (#6687) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The assertPreparedPackageSize check introduced after v0.19.8 set an 80 MB ceiling, but the current package is 80.58 MB — 597 KB over — causing the Docker sandbox build to fail during the v0.19.9 release. Bump to 96 MB to accommodate normal growth with ample headroom. --- scripts/prepare-package.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare-package.js b/scripts/prepare-package.js index d9cb9c9aaf2..30d8a2ac887 100644 --- a/scripts/prepare-package.js +++ b/scripts/prepare-package.js @@ -19,7 +19,7 @@ const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const defaultRootDir = path.resolve(__dirname, '..'); const TEST_FILE_RE = /\.(test|spec)\.(d\.)?[mc]?[jt]s(\.map)?$/; -const DEFAULT_MAX_NPM_PACKAGE_UNPACKED_BYTES = 80 * 1024 * 1024; +const DEFAULT_MAX_NPM_PACKAGE_UNPACKED_BYTES = 96 * 1024 * 1024; const PACKAGE_TEXT_FILE_RE = /\.(?:[cm]?[jt]sx?|json|md|html|css|txt|ya?ml|sh|svg|map)$/i; const PACKAGE_SCAN_FORBIDDEN_LITERALS = [