fix: add patches to package files (#8272)

This commit is contained in:
Zach Bloomquist
2020-08-13 14:39:30 -04:00
committed by GitHub
parent 4f36548f66
commit 5a3e7e6143
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ const checkZipSize = function (zipPath) {
const zipSize = filesize(stats.size, { round: 0 })
console.log(`zip file size ${zipSize}`)
const MAX_ALLOWED_SIZE_MB = os.platform() === 'win32' ? 245 : 190
const MAX_ALLOWED_SIZE_MB = os.platform() === 'win32' ? 245 : 195
const MAX_ZIP_FILE_SIZE = megaBytes(MAX_ALLOWED_SIZE_MB)
if (stats.size > MAX_ZIP_FILE_SIZE) {