Skip to content

Commit f56219a

Browse files
authored
build: Fix size limit (#9967)
I think this was just not updated... I aligned it with the webpack size limit for the "full" bundle.
1 parent 7f8eca7 commit f56219a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.size-limit.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ module.exports = [
6060
name: '@sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped)',
6161
path: 'packages/browser/build/bundles/bundle.tracing.replay.feedback.min.js',
6262
gzip: true,
63-
limit: '75 KB',
63+
limit: '90 KB',
6464
},
6565
{
6666
name: '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)',
@@ -101,7 +101,7 @@ module.exports = [
101101
path: 'packages/browser/build/bundles/bundle.min.js',
102102
gzip: false,
103103
brotli: false,
104-
limit: '70 KB',
104+
limit: '80 KB',
105105
},
106106

107107
// Browser CDN bundles (ES5)
@@ -110,7 +110,7 @@ module.exports = [
110110
name: '@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)',
111111
path: 'packages/browser/build/bundles/bundle.tracing.es5.min.js',
112112
gzip: true,
113-
limit: '35 KB',
113+
limit: '40 KB',
114114
},
115115

116116
// React

0 commit comments

Comments
 (0)