From 33d3b72fcf08e879591651e162e68ea622161272 Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Tue, 30 Nov 2021 18:48:03 -0500 Subject: [PATCH] feat(tracing): Export BrowserTracing by itself This allows users to explicitly import BrowserTracing, allowing them to treeshake out the other integrations. --- packages/tracing/src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/tracing/src/index.ts b/packages/tracing/src/index.ts index 608bd0630810..0517243dc9f6 100644 --- a/packages/tracing/src/index.ts +++ b/packages/tracing/src/index.ts @@ -4,6 +4,9 @@ import * as TracingIntegrations from './integrations'; const Integrations = { ...TracingIntegrations, BrowserTracing }; +export { BrowserTracing }; + +// TODO(v7): Individually export each integration from integrations export { Integrations }; export { Span } from './span'; export { Transaction } from './transaction';