11module . exports = [
22 // Main browser webpack builds
3+ {
4+ name : '@sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped)' ,
5+ path : 'packages/browser/build/npm/esm/index.js' ,
6+ import : '{ init, Replay, BrowserTracing, Feedback }' ,
7+ gzip : true ,
8+ limit : '90 KB' ,
9+ } ,
310 {
411 name : '@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)' ,
512 path : 'packages/browser/build/npm/esm/index.js' ,
613 import : '{ init, Replay, BrowserTracing }' ,
714 gzip : true ,
8- limit : '90 KB' ,
15+ limit : '75 KB' ,
916 } ,
1017 {
1118 name : '@sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped)' ,
1219 path : 'packages/browser/build/npm/esm/index.js' ,
1320 import : '{ init, Replay, BrowserTracing }' ,
1421 gzip : true ,
15- limit : '90 KB' ,
22+ limit : '75 KB' ,
1623 modifyWebpackConfig : function ( config ) {
1724 const webpack = require ( 'webpack' ) ;
1825 config . plugins . push (
@@ -33,6 +40,13 @@ module.exports = [
3340 gzip : true ,
3441 limit : '35 KB' ,
3542 } ,
43+ {
44+ name : '@sentry/browser (incl. Feedback) - Webpack (gzipped)' ,
45+ path : 'packages/browser/build/npm/esm/index.js' ,
46+ import : '{ init, Feedback }' ,
47+ gzip : true ,
48+ limit : '50 KB' ,
49+ } ,
3650 {
3751 name : '@sentry/browser - Webpack (gzipped)' ,
3852 path : 'packages/browser/build/npm/esm/index.js' ,
@@ -42,11 +56,17 @@ module.exports = [
4256 } ,
4357
4458 // Browser CDN bundles (ES6)
59+ {
60+ name : '@sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped)' ,
61+ path : 'packages/browser/build/bundles/bundle.tracing.replay.feedback.min.js' ,
62+ gzip : true ,
63+ limit : '75 KB' ,
64+ } ,
4565 {
4666 name : '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)' ,
4767 path : 'packages/browser/build/bundles/bundle.tracing.replay.min.js' ,
4868 gzip : true ,
49- limit : '90 KB' ,
69+ limit : '75 KB' ,
5070 } ,
5171 {
5272 name : '@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)' ,
@@ -96,7 +116,7 @@ module.exports = [
96116 path : 'packages/react/build/esm/index.js' ,
97117 import : '{ init, BrowserTracing, Replay }' ,
98118 gzip : true ,
99- limit : '90 KB' ,
119+ limit : '75 KB' ,
100120 } ,
101121 {
102122 name : '@sentry/react - Webpack (gzipped)' ,
@@ -126,6 +146,6 @@ module.exports = [
126146 path : 'packages/feedback/build/npm/esm/index.js' ,
127147 import : '{ Feedback }' ,
128148 gzip : true ,
129- limit : '35 KB' ,
149+ limit : '25 KB' ,
130150 } ,
131151] ;
0 commit comments