@@ -3,28 +3,28 @@ module.exports = [
3
3
{
4
4
name : '@sentry/browser (incl. Tracing, Replay, Feedback) - Webpack (gzipped)' ,
5
5
path : 'packages/browser/build/npm/esm/index.js' ,
6
- import : '{ init, Replay , browserTracingIntegration, Feedback }' ,
6
+ import : '{ init, replayIntegration , browserTracingIntegration, feedbackIntegration }' ,
7
7
gzip : true ,
8
8
limit : '90 KB' ,
9
9
} ,
10
10
{
11
11
name : '@sentry/browser (incl. Tracing, Replay) - Webpack (gzipped)' ,
12
12
path : 'packages/browser/build/npm/esm/index.js' ,
13
- import : '{ init, Replay , browserTracingIntegration }' ,
13
+ import : '{ init, replayIntegration , browserTracingIntegration }' ,
14
14
gzip : true ,
15
15
limit : '75 KB' ,
16
16
} ,
17
17
{
18
18
name : '@sentry/browser (incl. Tracing, Replay with Canvas) - Webpack (gzipped)' ,
19
19
path : 'packages/browser/build/npm/esm/index.js' ,
20
- import : '{ init, Replay , browserTracingIntegration, ReplayCanvas }' ,
20
+ import : '{ init, replayIntegration , browserTracingIntegration, replayCanvasIntegration }' ,
21
21
gzip : true ,
22
22
limit : '90 KB' ,
23
23
} ,
24
24
{
25
25
name : '@sentry/browser (incl. Tracing, Replay) - Webpack with treeshaking flags (gzipped)' ,
26
26
path : 'packages/browser/build/npm/esm/index.js' ,
27
- import : '{ init, Replay , browserTracingIntegration }' ,
27
+ import : '{ init, replayIntegration , browserTracingIntegration }' ,
28
28
gzip : true ,
29
29
limit : '75 KB' ,
30
30
modifyWebpackConfig : function ( config ) {
@@ -55,9 +55,23 @@ module.exports = [
55
55
limit : '35 KB' ,
56
56
} ,
57
57
{
58
- name : '@sentry/browser (incl. Feedback ) - Webpack (gzipped)' ,
58
+ name : '@sentry/browser (incl. feedbackIntegration ) - Webpack (gzipped)' ,
59
59
path : 'packages/browser/build/npm/esm/index.js' ,
60
- import : '{ init, Feedback }' ,
60
+ import : '{ init, feedbackIntegration }' ,
61
+ gzip : true ,
62
+ limit : '50 KB' ,
63
+ } ,
64
+ {
65
+ name : '@sentry/browser (incl. feedbackModalIntegration) - Webpack (gzipped)' ,
66
+ path : 'packages/browser/build/npm/esm/index.js' ,
67
+ import : '{ init, feedbackIntegration, feedbackModalIntegration }' ,
68
+ gzip : true ,
69
+ limit : '50 KB' ,
70
+ } ,
71
+ {
72
+ name : '@sentry/browser (incl. feedbackScreenshotIntegration) - Webpack (gzipped)' ,
73
+ path : 'packages/browser/build/npm/esm/index.js' ,
74
+ import : '{ init, feedbackIntegration, feedbackModalIntegration, feedbackScreenshotIntegration }' ,
61
75
gzip : true ,
62
76
limit : '50 KB' ,
63
77
} ,
@@ -76,69 +90,60 @@ module.exports = [
76
90
limit : '28 KB' ,
77
91
} ,
78
92
79
- // Browser CDN bundles (ES6)
93
+ // Browser CDN bundles
80
94
{
81
- name : '@sentry/browser (incl. Tracing, Replay, Feedback) - ES6 CDN Bundle (gzipped)' ,
95
+ name : '@sentry/browser (incl. Tracing, Replay, Feedback) - CDN Bundle (gzipped)' ,
82
96
path : 'packages/browser/build/bundles/bundle.tracing.replay.feedback.min.js' ,
83
97
gzip : true ,
84
98
limit : '90 KB' ,
85
99
} ,
86
100
{
87
- name : '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped)' ,
101
+ name : '@sentry/browser (incl. Tracing, Replay) - CDN Bundle (gzipped)' ,
88
102
path : 'packages/browser/build/bundles/bundle.tracing.replay.min.js' ,
89
103
gzip : true ,
90
104
limit : '75 KB' ,
91
105
} ,
92
106
{
93
- name : '@sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped)' ,
107
+ name : '@sentry/browser (incl. Tracing) - CDN Bundle (gzipped)' ,
94
108
path : 'packages/browser/build/bundles/bundle.tracing.min.js' ,
95
109
gzip : true ,
96
110
limit : '37 KB' ,
97
111
} ,
98
112
{
99
- name : '@sentry/browser - ES6 CDN Bundle (gzipped)' ,
113
+ name : '@sentry/browser - CDN Bundle (gzipped)' ,
100
114
path : 'packages/browser/build/bundles/bundle.min.js' ,
101
115
gzip : true ,
102
116
limit : '28 KB' ,
103
117
} ,
104
118
105
- // browser CDN bundles (ES6 + non-gzipped)
119
+ // browser CDN bundles (non-gzipped)
106
120
{
107
- name : '@sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed)' ,
121
+ name : '@sentry/browser (incl. Tracing, Replay) - CDN Bundle (minified & uncompressed)' ,
108
122
path : 'packages/browser/build/bundles/bundle.tracing.replay.min.js' ,
109
123
gzip : false ,
110
124
brotli : false ,
111
125
limit : '260 KB' ,
112
126
} ,
113
127
{
114
- name : '@sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed)' ,
128
+ name : '@sentry/browser (incl. Tracing) - CDN Bundle (minified & uncompressed)' ,
115
129
path : 'packages/browser/build/bundles/bundle.tracing.min.js' ,
116
130
gzip : false ,
117
131
brotli : false ,
118
132
limit : '105 KB' ,
119
133
} ,
120
134
{
121
- name : '@sentry/browser - ES6 CDN Bundle (minified & uncompressed)' ,
135
+ name : '@sentry/browser - CDN Bundle (minified & uncompressed)' ,
122
136
path : 'packages/browser/build/bundles/bundle.min.js' ,
123
137
gzip : false ,
124
138
brotli : false ,
125
139
limit : '80 KB' ,
126
140
} ,
127
141
128
- // Browser CDN bundles (ES5)
129
- // Replay is not supported in ES5 mode
130
- {
131
- name : '@sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped)' ,
132
- path : 'packages/browser/build/bundles/bundle.tracing.es5.min.js' ,
133
- gzip : true ,
134
- limit : '40 KB' ,
135
- } ,
136
-
137
142
// React
138
143
{
139
144
name : '@sentry/react (incl. Tracing, Replay) - Webpack (gzipped)' ,
140
145
path : 'packages/react/build/esm/index.js' ,
141
- import : '{ init, browserTracingIntegration, Replay }' ,
146
+ import : '{ init, browserTracingIntegration, replayIntegration }' ,
142
147
gzip : true ,
143
148
limit : '75 KB' ,
144
149
} ,
@@ -154,7 +159,7 @@ module.exports = [
154
159
{
155
160
name : '@sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped)' ,
156
161
path : 'packages/nextjs/build/esm/client/index.js' ,
157
- import : '{ init, browserTracingIntegration, Replay }' ,
162
+ import : '{ init, browserTracingIntegration, replayIntegration }' ,
158
163
gzip : true ,
159
164
limit : '110 KB' ,
160
165
} ,
@@ -168,7 +173,7 @@ module.exports = [
168
173
{
169
174
name : '@sentry-internal/feedback - Webpack (gzipped)' ,
170
175
path : 'packages/feedback/build/npm/esm/index.js' ,
171
- import : '{ Feedback }' ,
176
+ import : '{ feedbackIntegration }' ,
172
177
gzip : true ,
173
178
limit : '25 KB' ,
174
179
} ,
0 commit comments