From 8dc5396a07d0b3357a0a961f99e4fa89e7555ea7 Mon Sep 17 00:00:00 2001 From: Andrew Bulat Date: Thu, 16 Jan 2025 06:33:47 +0000 Subject: [PATCH] Update minimal bundle size --- scripts/moduleReport.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/moduleReport.ts b/scripts/moduleReport.ts index 8d1921789..e1b67a8b2 100644 --- a/scripts/moduleReport.ts +++ b/scripts/moduleReport.ts @@ -6,7 +6,7 @@ import { gzip } from 'zlib'; import Table from 'cli-table'; // The maximum size we allow for a minimal useful Realtime bundle (i.e. one that can subscribe to a channel) -const minimalUsefulRealtimeBundleSizeThresholdsKiB = { raw: 101, gzip: 31 }; +const minimalUsefulRealtimeBundleSizeThresholdsKiB = { raw: 102, gzip: 31 }; const baseClientNames = ['BaseRest', 'BaseRealtime'];