Skip to content

Commit

Permalink
build: Fix size limit (#9967)
Browse files Browse the repository at this point in the history
I think this was just not updated... I aligned it with the webpack size
limit for the "full" bundle.
  • Loading branch information
mydea committed Dec 22, 2023
1 parent 7f8eca7 commit f56219a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .size-limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = [
name: '@sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped)',
path: 'packages/browser/build/bundles/bundle.tracing.replay.feedback.min.js',
gzip: true,
limit: '75 KB',
limit: '90 KB',
},
{
name: '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)',
Expand Down Expand Up @@ -101,7 +101,7 @@ module.exports = [
path: 'packages/browser/build/bundles/bundle.min.js',
gzip: false,
brotli: false,
limit: '70 KB',
limit: '80 KB',
},

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

// React
Expand Down

0 comments on commit f56219a

Please sign in to comment.