From 9c7317aaffbe1433cb9fd5a91616728b3f7d3ea9 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Wed, 18 Jan 2023 11:33:20 -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 661ad47c9f4..578d09cd844 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("33.28KB"); +const gzipBundleByteLengthLimit = bytes("33.30KB"); const minFile = join("dist", "apollo-client.min.cjs"); const minPath = join(__dirname, "..", minFile); const gzipByteLen = gzipSync(readFileSync(minPath)).byteLength;