We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a72807 commit 0bb96e6Copy full SHA for 0bb96e6
src/ci/check_bundle_size.ts
@@ -30,7 +30,7 @@ const totalCompressedSizeKB = (totalCompressedSize / 1024).toFixed(2)
30
files.push({}, { path: 'Total', sizeKB: totalSizeKB, compressedSizeKB: totalCompressedSizeKB })
31
console.table(files, ['path', 'sizeKB', 'compressedSizeKB'])
32
33
-const upperBoundKB = 262
+const upperBoundKB = 263
34
const lowerBoundKB = upperBoundKB - 10
35
if (totalCompressedSize < lowerBoundKB * 1024) {
36
console.warn(`Bundle size lower than expected, let's lower the limit! (${totalCompressedSizeKB}KB < ${lowerBoundKB}KB)`)
0 commit comments