Skip to content

Commit 16b0e18

Browse files
committed
raise size limits
1 parent 5ba34d6 commit 16b0e18

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
{
123123
name: '@sentry/browser (incl. Metrics)',
@@ -147,15 +147,15 @@ module.exports = [
147147
import: createImport('init', 'ErrorBoundary'),
148148
ignore: ['react/jsx-runtime'],
149149
gzip: true,
150-
limit: '27 KB',
150+
limit: '28 KB',
151151
},
152152
{
153153
name: '@sentry/react (incl. Tracing)',
154154
path: 'packages/react/build/esm/index.js',
155155
import: createImport('init', 'ErrorBoundary', 'reactRouterV6BrowserTracingIntegration'),
156156
ignore: ['react/jsx-runtime'],
157157
gzip: true,
158-
limit: '45 KB',
158+
limit: '46 KB',
159159
},
160160
// Vue SDK (ESM)
161161
{
@@ -170,34 +170,34 @@ module.exports = [
170170
path: 'packages/vue/build/esm/index.js',
171171
import: createImport('init', 'browserTracingIntegration'),
172172
gzip: true,
173-
limit: '44 KB',
173+
limit: '45 KB',
174174
},
175175
// Svelte SDK (ESM)
176176
{
177177
name: '@sentry/svelte',
178178
path: 'packages/svelte/build/esm/index.js',
179179
import: createImport('init'),
180180
gzip: true,
181-
limit: '25 KB',
181+
limit: '26 KB',
182182
},
183183
// Browser CDN bundles
184184
{
185185
name: 'CDN Bundle',
186186
path: createCDNPath('bundle.min.js'),
187187
gzip: true,
188-
limit: '27.5 KB',
188+
limit: '28.5 KB',
189189
},
190190
{
191191
name: 'CDN Bundle (incl. Tracing)',
192192
path: createCDNPath('bundle.tracing.min.js'),
193193
gzip: true,
194-
limit: '43 KB',
194+
limit: '44 KB',
195195
},
196196
{
197197
name: 'CDN Bundle (incl. Tracing, Replay)',
198198
path: createCDNPath('bundle.tracing.replay.min.js'),
199199
gzip: true,
200-
limit: '80 KB',
200+
limit: '81 KB',
201201
},
202202
{
203203
name: 'CDN Bundle (incl. Tracing, Replay, Feedback)',
@@ -211,21 +211,21 @@ module.exports = [
211211
path: createCDNPath('bundle.min.js'),
212212
gzip: false,
213213
brotli: false,
214-
limit: '82 KB',
214+
limit: '83 KB',
215215
},
216216
{
217217
name: 'CDN Bundle (incl. Tracing) - uncompressed',
218218
path: createCDNPath('bundle.tracing.min.js'),
219219
gzip: false,
220220
brotli: false,
221-
limit: '127 KB',
221+
limit: '129 KB',
222222
},
223223
{
224224
name: 'CDN Bundle (incl. Tracing, Replay) - uncompressed',
225225
path: createCDNPath('bundle.tracing.replay.min.js'),
226226
gzip: false,
227227
brotli: false,
228-
limit: '245 KB',
228+
limit: '247 KB',
229229
},
230230
{
231231
name: 'CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed',
@@ -241,7 +241,7 @@ module.exports = [
241241
import: createImport('init'),
242242
ignore: ['next/router', 'next/constants'],
243243
gzip: true,
244-
limit: '47 KB',
244+
limit: '48 KB',
245245
},
246246
// SvelteKit SDK (ESM)
247247
{
@@ -250,7 +250,7 @@ module.exports = [
250250
import: createImport('init'),
251251
ignore: ['$app/stores'],
252252
gzip: true,
253-
limit: '43 KB',
253+
limit: '44 KB',
254254
},
255255
// Node-Core SDK (ESM)
256256
{
@@ -259,7 +259,7 @@ module.exports = [
259259
import: createImport('init'),
260260
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
261261
gzip: true,
262-
limit: '52 KB',
262+
limit: '53 KB',
263263
},
264264
// Node SDK (ESM)
265265
{
@@ -268,14 +268,14 @@ module.exports = [
268268
import: createImport('init'),
269269
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
270270
gzip: true,
271-
limit: '162 KB',
271+
limit: '166 KB',
272272
},
273273
{
274274
name: '@sentry/node - without tracing',
275275
path: 'packages/node/build/esm/index.js',
276276
import: createImport('initWithoutDefaultIntegrations', 'getDefaultIntegrationsWithoutPerformance'),
277277
gzip: true,
278-
limit: '95 KB',
278+
limit: '97 KB',
279279
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
280280
modifyWebpackConfig: function (config) {
281281
const webpack = require('webpack');
@@ -298,7 +298,7 @@ module.exports = [
298298
import: createImport('init'),
299299
ignore: [...builtinModules, ...nodePrefixedBuiltinModules],
300300
gzip: true,
301-
limit: '111 KB',
301+
limit: '112 KB',
302302
},
303303
];
304304

0 commit comments

Comments
 (0)