Skip to content

Commit f3af41b

Browse files
committed
bump size limit & fix lint
1 parent 2b1440b commit f3af41b

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

.size-limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = [
4040
path: 'packages/browser/build/npm/esm/index.js',
4141
import: createImport('init', 'browserTracingIntegration'),
4242
gzip: true,
43-
limit: '38 KB',
43+
limit: '39 KB',
4444
},
4545
{
4646
name: '@sentry/browser (incl. Tracing, Replay)',

packages/browser/src/tracing/browserTracingIntegration.ts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,8 @@ import {
99
startTrackingLongTasks,
1010
startTrackingWebVitals,
1111
} from '@sentry-internal/browser-utils';
12-
import {
13-
Client,
14-
IntegrationFn,
15-
Span,
16-
StartSpanOptions,
17-
TransactionSource,
18-
WebFetchHeaders,
19-
consoleSandbox,
20-
} from '@sentry/core';
12+
import type { Client, IntegrationFn, Span, StartSpanOptions, TransactionSource, WebFetchHeaders } from '@sentry/core';
13+
import { consoleSandbox } from '@sentry/core';
2114
import {
2215
GLOBAL_OBJ,
2316
SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON,

0 commit comments

Comments
 (0)