We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656ad41 commit e0704daCopy full SHA for e0704da
1 file changed
packages/audience/pixel/src/iife.ts
@@ -6,3 +6,13 @@
6
* bundle as small as possible.
7
*/
8
import './bootstrap';
9
+
10
+// TEST: temporary side-effectful padding to verify bundle size delta (not tree-shakeable)
11
+// eslint-disable-next-line no-underscore-dangle
12
+(window as unknown as Record<string, unknown>).__imtblBundleTest = [
13
+ 'Temporary padding to verify bundle size delta reporting.',
14
+ 'This array exists solely to inflate the bundle for CI testing.',
15
+ 'It will be removed after verifying the delta calculation works.',
16
+ 'Adding enough unique text to make a visible gzipped difference.',
17
+ 'The previous attempt used an unused variable which tsup tree-shook away.',
18
+].join(' ');
0 commit comments