Skip to content

Commit

Permalink
Bump bundlesize limit to 34.1KB (currently 33.98KB).
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamn committed Mar 8, 2023
1 parent d4cab18 commit 08549be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/bundlesize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { join } from "path";
import { gzipSync } from "zlib";
import bytes from "bytes";

const gzipBundleByteLengthLimit = bytes("33.97KB");
const gzipBundleByteLengthLimit = bytes("34.1KB");
const minFile = join("dist", "apollo-client.min.cjs");
const minPath = join(__dirname, "..", minFile);
const gzipByteLen = gzipSync(readFileSync(minPath)).byteLength;
Expand Down

0 comments on commit 08549be

Please sign in to comment.