File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,19 @@ targets.forEach(jsVersion => {
2525 outputFileBase : ( ) => `bundles/bundle.tracing${ jsVersion === 'es5' ? '.es5' : '' } ` ,
2626 } ) ;
2727
28- builds . push ( ...makeBundleConfigVariants ( baseBundleConfig ) , ...makeBundleConfigVariants ( tracingBaseBundleConfig ) ) ;
28+ const browserProfilingAddonBaseBundleConfig = makeBaseBundleConfig ( {
29+ bundleType : 'addon' ,
30+ entrypoints : [ 'src/profiling/integration.ts' ] ,
31+ jsVersion,
32+ licenseTitle : '@sentry/browser' ,
33+ outputFileBase : ( ) => `bundles/browserprofiling${ jsVersion === 'es5' ? '.es5' : '' } ` ,
34+ } ) ;
35+
36+ builds . push (
37+ ...makeBundleConfigVariants ( baseBundleConfig ) ,
38+ ...makeBundleConfigVariants ( tracingBaseBundleConfig ) ,
39+ ...makeBundleConfigVariants ( browserProfilingAddonBaseBundleConfig ) ,
40+ ) ;
2941} ) ;
3042
3143if ( targets . includes ( 'es6' ) ) {
You can’t perform that action at this time.
0 commit comments