Skip to content

Commit 27eb2d4

Browse files
committed
remove tracing
1 parent c8612c1 commit 27eb2d4

File tree

5 files changed

+4
-1061
lines changed

5 files changed

+4
-1061
lines changed

packages/tracing/src/browser/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { BrowserTracing } from './browsertracing';

packages/tracing/src/index.bundle.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export { SDK_NAME, SDK_VERSION } from '@sentry/browser';
5252
import { Integrations as BrowserIntegrations } from '@sentry/browser';
5353
import { getGlobalObject } from '@sentry/utils';
5454

55+
import { BrowserTracing } from './browser';
5556
import { addExtensionMethods } from './hubextensions';
56-
import * as ApmIntegrations from './integrations';
5757

5858
export { Span, TRACEPARENT_REGEXP } from './span';
5959

@@ -70,7 +70,7 @@ if (_window.Sentry && _window.Sentry.Integrations) {
7070
const INTEGRATIONS = {
7171
...windowIntegrations,
7272
...BrowserIntegrations,
73-
Tracing: ApmIntegrations.Tracing,
73+
...BrowserTracing,
7474
};
7575

7676
export { INTEGRATIONS as Integrations };

packages/tracing/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BrowserTracing } from './browser/browsertracing';
1+
import { BrowserTracing } from './browser';
22
import { addExtensionMethods } from './hubextensions';
33
import * as ApmIntegrations from './integrations';
44

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
export { Express } from './express';
2-
export { Tracing } from './tracing';

0 commit comments

Comments
 (0)