From a575c83942722c7ac7a4c2443b7a01184e74b36a Mon Sep 17 00:00:00 2001 From: Katie Byers Date: Fri, 25 Sep 2020 12:40:29 -0700 Subject: [PATCH] fix(tracing): Expose `startTransaction` in CDN bundle (#2938) Make sure it appears on `window.Sentry` as well as `window.__SENTRY__.extensions`, so it's accessible in the public API. (Because of how things are built, this only affected the bundle, not the npm package.) --- packages/tracing/src/index.bundle.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/tracing/src/index.bundle.ts b/packages/tracing/src/index.bundle.ts index c7d60c3635a3..5b2bfd00501b 100644 --- a/packages/tracing/src/index.bundle.ts +++ b/packages/tracing/src/index.bundle.ts @@ -30,6 +30,7 @@ export { setTag, setTags, setUser, + startTransaction, Transports, withScope, } from '@sentry/browser';