File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
integration-tests/fixtures/bundle-size-optimizations/input Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ export function sentryUnpluginFactory({
255255 bundleSizeOptimizations . excludePerformanceMonitoring ||
256256 bundleSizeOptimizations . excludeTracing
257257 ) {
258- replacementValues [ "__SENTRY_TRACE__ " ] = false ;
258+ replacementValues [ "__SENTRY_TRACING__ " ] = false ;
259259 }
260260 if ( bundleSizeOptimizations . excludeReplayCanvas ) {
261261 replacementValues [ "__RRWEB_EXCLUDE_CANVAS__" ] = true ;
Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ export type IncludeEntry = {
498498
499499export interface SentrySDKBuildFlags extends Record < string , boolean | undefined > {
500500 __SENTRY_DEBUG__ ?: boolean ;
501- __SENTRY_TRACE__ ?: boolean ;
501+ __SENTRY_TRACING__ ?: boolean ;
502502 __RRWEB_EXCLUDE_CANVAS__ ?: boolean ;
503503 __RRWEB_EXCLUDE_IFRAME__ ?: boolean ;
504504 __RRWEB_EXCLUDE_SHADOW_DOM__ ?: boolean ;
Original file line number Diff line number Diff line change 11console . log ( {
22 debug : __SENTRY_DEBUG__ ? "a" : "b" ,
3- trace : __SENTRY_TRACE__ ? "a" : "b" ,
3+ trace : __SENTRY_TRACING__ ? "a" : "b" ,
44 replayCanvas : __RRWEB_EXCLUDE_CANVAS__ ? "a" : "b" ,
55 replayIframe : __RRWEB_EXCLUDE_IFRAME__ ? "a" : "b" ,
66 replayShadowDom : __RRWEB_EXCLUDE_SHADOW_DOM__ ? "a" : "b" ,
You can’t perform that action at this time.
0 commit comments