From f4e0ece2d90be0d73f3f9027d4e397d10c2ce1f3 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Thu, 8 Dec 2022 15:12:13 -0700 Subject: [PATCH] Update bundlesize --- config/bundlesize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bundlesize.ts b/config/bundlesize.ts index 707e80c5618..4a738d0ff20 100644 --- a/config/bundlesize.ts +++ b/config/bundlesize.ts @@ -3,7 +3,7 @@ import { join } from "path"; import { gzipSync } from "zlib"; import bytes from "bytes"; -const gzipBundleByteLengthLimit = bytes("32.72KB"); +const gzipBundleByteLengthLimit = bytes("32.79KB"); const minFile = join("dist", "apollo-client.min.cjs"); const minPath = join(__dirname, "..", minFile); const gzipByteLen = gzipSync(readFileSync(minPath)).byteLength;