We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9885877 commit acf45a1Copy full SHA for acf45a1
unit-test/verify-artifacts.js
@@ -6,8 +6,11 @@ import { cwd } from '../scripts/script-utils.js'
6
const ROOT = join(cwd(import.meta.url), '..')
7
const BUILD = join(ROOT, 'build')
8
const APPLE_BUILD = join(ROOT, 'Sources/ContentScopeScripts/dist')
9
-const CSS_OUTPUT_SIZE = 560000
+let CSS_OUTPUT_SIZE = 560000
10
const CSS_OUTPUT_SIZE_CHROME = CSS_OUTPUT_SIZE * 1.45 // 45% larger for Chrome MV2 due to base64 encoding
11
+if (process.platform === 'win32') {
12
+ CSS_OUTPUT_SIZE = CSS_OUTPUT_SIZE * 1.1 // 10% larger for Windows due to line endings
13
+}
14
15
const checks = {
16
android: [
0 commit comments