Skip to content

Commit b7699d4

Browse files
authored
feat(browser): Ensure browserProfilingIntegration is published to CDN (#12158)
Closes #12156
1 parent 6cb60a3 commit b7699d4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

packages/browser/rollup.bundle.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { makeBaseBundleConfig, makeBundleConfigVariants } from '@sentry-internal
22

33
const builds = [];
44

5-
const browserPluggableIntegrationFiles = ['contextlines', 'httpclient', 'reportingobserver'];
5+
const browserPluggableIntegrationFiles = ['contextlines', 'httpclient', 'reportingobserver', 'browserprofiling'];
66

77
const corePluggableIntegrationFiles = [
88
'captureconsole',
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { browserProfilingIntegration } from '../profiling/integration';

packages/browser/src/utils/lazyLoadIntegration.ts

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const LazyLoadableIntegrations = {
2020
reportingObserverIntegration: 'reportingobserver',
2121
rewriteFramesIntegration: 'rewriteframes',
2222
sessionTimingIntegration: 'sessiontiming',
23+
browserProfilingIntegration: 'browserprofiling',
2324
} as const;
2425

2526
const WindowWithMaybeIntegration = WINDOW as {

0 commit comments

Comments
 (0)