Skip to content

Commit

Permalink
fix(build): Increase size limit for browser+tracing bundle (#2899)
Browse files Browse the repository at this point in the history
25K because it's the ceiling of where we are now, so it stops us from being perma-red, but also will alert us to any significant growth in the combined bundle size.
  • Loading branch information
lobsterkatie authored Sep 15, 2020
1 parent 77743be commit 263c880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .size-limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ module.exports = [
name: '@sentry/browser + @sentry/tracing - CDN Bundle (gzipped)',
path: 'packages/tracing/build/bundle.tracing.min.js',
gzip: true,
limit: '23 KB',
limit: '25 KB',
},
];

0 comments on commit 263c880

Please sign in to comment.