From f5617de6051018881e094567abf94ab52892edb9 Mon Sep 17 00:00:00 2001 From: Alek Angelov Date: Tue, 13 Dec 2022 13:00:26 +0100 Subject: [PATCH] chore(filesize): bump filesize limit by 0.03KB --- config/bundlesize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bundlesize.ts b/config/bundlesize.ts index b628fb88013..37cf95e8f51 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("31.87KB"); +const gzipBundleByteLengthLimit = bytes("31.9KB"); const minFile = join("dist", "apollo-client.min.cjs"); const minPath = join(__dirname, "..", minFile); const gzipByteLen = gzipSync(readFileSync(minPath)).byteLength;