From 6f16af42126fd5ea187e489f116b4e928975628a Mon Sep 17 00:00:00 2001 From: jdlrobson Date: Thu, 11 Feb 2021 08:50:07 -0800 Subject: [PATCH] Round up to nearest kb The precision we are currently using leads to lots of issues with core changes and as we grow the new vector. I think checking in at every 1kb margin seems like a better state of play for now. Bug: T270883 Change-Id: Iaa4fb44a471777fdebfb906c465ea67b5bdb3903 --- bundlesize.config.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bundlesize.config.json b/bundlesize.config.json index 1261e9a..e0bfb0f 100644 --- a/bundlesize.config.json +++ b/bundlesize.config.json @@ -1,18 +1,18 @@ [ { "resourceModule": "skins.vector.styles.legacy", - "maxSize": "8.1 kB" + "maxSize": "9 kB" }, { "resourceModule": "skins.vector.styles", - "maxSize": "9.8 kB" + "maxSize": "10 kB" }, { "resourceModule": "skins.vector.legacy.js", - "maxSize": "1.8 kB" + "maxSize": "2 kB" }, { "resourceModule": "skins.vector.search", - "maxSize": "2.8 kB" + "maxSize": "3 kB" } ]