Skip to content

Commit bb9c1d6

Browse files
committed
raise size limits
1 parent f4e1667 commit bb9c1d6

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

.size-limit.js

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ module.exports = [
88
path: 'packages/browser/build/npm/esm/prod/index.js',
99
import: createImport('init'),
1010
gzip: true,
11-
limit: '25 KB',
11+
limit: '26KB',
1212
},
1313
{
1414
name: '@sentry/browser - with treeshaking flags',
1515
path: 'packages/browser/build/npm/esm/prod/index.js',
1616
import: createImport('init'),
1717
gzip: true,
18-
limit: '24.1 KB',
18+
limit: '25 KB',
1919
modifyWebpackConfig: function (config) {
2020
const webpack = require('webpack');
2121

@@ -38,7 +38,7 @@ module.exports = [
3838
path: 'packages/browser/build/npm/esm/prod/index.js',
3939
import: createImport('init', 'browserTracingIntegration'),
4040
gzip: true,
41-
limit: '42 KB',
41+
limit: '43 KB',
4242
},
4343
{
4444
name: '@sentry/browser (incl. Tracing, Profiling)',
@@ -89,21 +89,21 @@ module.exports = [
8989
path: 'packages/browser/build/npm/esm/prod/index.js',
9090
import: createImport('init', 'browserTracingIntegration', 'replayIntegration', 'replayCanvasIntegration'),
9191
gzip: true,
92-
limit: '86 KB',
92+
limit: '87 KB',
9393
},
9494
{
9595
name: '@sentry/browser (incl. Tracing, Replay, Feedback)',
9696
path: 'packages/browser/build/npm/esm/prod/index.js',
9797
import: createImport('init', 'browserTracingIntegration', 'replayIntegration', 'feedbackIntegration'),
9898
gzip: true,
99-
limit: '98 KB',
99+
limit: '99 KB',
100100
},
101101
{
102102
name: '@sentry/browser (incl. Feedback)',
103103
path: 'packages/browser/build/npm/esm/prod/index.js',
104104
import: createImport('init', 'feedbackIntegration'),
105105
gzip: true,
106-
limit: '42 KB',
106+
limit: '43 KB',
107107
},
108108
{
109109
name: '@sentry/browser (incl. sendFeedback)',
@@ -117,7 +117,7 @@ module.exports = [
117117
path: 'packages/browser/build/npm/esm/prod/index.js',
118118
import: createImport('init', 'feedbackAsyncIntegration'),
119119
gzip: true,
120-
limit: '35 KB',
120+
limit: '36 KB',
121121
},
122122
// React SDK (ESM)
123123
{
@@ -126,15 +126,15 @@ module.exports = [
126126
import: createImport('init', 'ErrorBoundary'),
127127
ignore: ['react/jsx-runtime'],
128128
gzip: true,
129-
limit: '27 KB',
129+
limit: '28 KB',
130130
},
131131
{
132132
name: '@sentry/react (incl. Tracing)',
133133
path: 'packages/react/build/esm/index.js',
134134
import: createImport('init', 'ErrorBoundary', 'reactRouterV6BrowserTracingIntegration'),
135135
ignore: ['react/jsx-runtime'],
136136
gzip: true,
137-
limit: '45 KB',
137+
limit: '46 KB',
138138
},
139139
// Vue SDK (ESM)
140140
{
@@ -149,34 +149,34 @@ module.exports = [
149149
path: 'packages/vue/build/esm/index.js',
150150
import: createImport('init', 'browserTracingIntegration'),
151151
gzip: true,
152-
limit: '44 KB',
152+
limit: '45 KB',
153153
},
154154
// Svelte SDK (ESM)
155155
{
156156
name: '@sentry/svelte',
157157
path: 'packages/svelte/build/esm/index.js',
158158
import: createImport('init'),
159159
gzip: true,
160-
limit: '25 KB',
160+
limit: '26 KB',
161161
},
162162
// Browser CDN bundles
163163
{
164164
name: 'CDN Bundle',
165165
path: createCDNPath('bundle.min.js'),
166166
gzip: true,
167-
limit: '27.5 KB',
167+
limit: '28.5 KB',
168168
},
169169
{
170170
name: 'CDN Bundle (incl. Tracing)',
171171
path: createCDNPath('bundle.tracing.min.js'),
172172
gzip: true,
173-
limit: '43 KB',
173+
limit: '44 KB',
174174
},
175175
{
176176
name: 'CDN Bundle (incl. Tracing, Replay)',
177177
path: createCDNPath('bundle.tracing.replay.min.js'),
178178
gzip: true,
179-
limit: '80 KB',
179+
limit: '81 KB',
180180
},
181181
{
182182
name: 'CDN Bundle (incl. Tracing, Replay, Feedback)',
@@ -190,21 +190,21 @@ module.exports = [
190190
path: createCDNPath('bundle.min.js'),
191191
gzip: false,
192192
brotli: false,
193-
limit: '82 KB',
193+
limit: '83 KB',
194194
},
195195
{
196196
name: 'CDN Bundle (incl. Tracing) - uncompressed',
197197
path: createCDNPath('bundle.tracing.min.js'),
198198
gzip: false,
199199
brotli: false,
200-
limit: '127 KB',
200+
limit: '129 KB',
201201
},
202202
{
203203
name: 'CDN Bundle (incl. Tracing, Replay) - uncompressed',
204204
path: createCDNPath('bundle.tracing.replay.min.js'),
205205
gzip: false,
206206
brotli: false,
207-
limit: '245 KB',
207+
limit: '247 KB',
208208
},
209209
{
210210
name: 'CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed',
@@ -220,7 +220,7 @@ module.exports = [
220220
import: createImport('init'),
221221
ignore: ['next/router', 'next/constants'],
222222
gzip: true,
223-
limit: '47 KB',
223+
limit: '48 KB',
224224
},
225225
// SvelteKit SDK (ESM)
226226
{
@@ -229,7 +229,7 @@ module.exports = [
229229
import: createImport('init'),
230230
ignore: ['$app/stores'],
231231
gzip: true,
232-
limit: '43 KB',
232+
limit: '44 KB',
233233
},
234234
// Node-Core SDK (ESM)
235235
{
@@ -238,7 +238,7 @@ module.exports = [
238238
import: createImport('init'),
239239
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
240240
gzip: true,
241-
limit: '52 KB',
241+
limit: '53 KB',
242242
},
243243
// Node SDK (ESM)
244244
{
@@ -247,14 +247,14 @@ module.exports = [
247247
import: createImport('init'),
248248
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
249249
gzip: true,
250-
limit: '162 KB',
250+
limit: '166 KB',
251251
},
252252
{
253253
name: '@sentry/node - without tracing',
254254
path: 'packages/node/build/esm/index.js',
255255
import: createImport('initWithoutDefaultIntegrations', 'getDefaultIntegrationsWithoutPerformance'),
256256
gzip: true,
257-
limit: '95 KB',
257+
limit: '97 KB',
258258
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
259259
modifyWebpackConfig: function (config) {
260260
const webpack = require('webpack');
@@ -277,7 +277,7 @@ module.exports = [
277277
import: createImport('init'),
278278
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
279279
gzip: true,
280-
limit: '111 KB',
280+
limit: '112 KB',
281281
},
282282
];
283283

0 commit comments

Comments
 (0)