File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,19 @@ targets.forEach(jsVersion => {
25
25
outputFileBase : ( ) => `bundles/bundle.tracing${ jsVersion === 'es5' ? '.es5' : '' } ` ,
26
26
} ) ;
27
27
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
+ ) ;
29
41
} ) ;
30
42
31
43
if ( targets . includes ( 'es6' ) ) {
You can’t perform that action at this time.
0 commit comments