File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,19 @@ targets.forEach(jsVersion => {
33
33
outputFileBase : ( ) => `bundles/browserprofiling${ jsVersion === 'es5' ? '.es5' : '' } ` ,
34
34
} ) ;
35
35
36
+ const moduleMetadataAddonBaseBundleConfig = makeBaseBundleConfig ( {
37
+ bundleType : 'addon' ,
38
+ entrypoints : [ 'src/integrations/modulemetadata.ts' ] ,
39
+ jsVersion,
40
+ licenseTitle : '@sentry/browser' ,
41
+ outputFileBase : ( ) => `bundles/modulemetadata${ jsVersion === 'es5' ? '.es5' : '' } ` ,
42
+ } ) ;
43
+
36
44
builds . push (
37
45
...makeBundleConfigVariants ( baseBundleConfig ) ,
38
46
...makeBundleConfigVariants ( tracingBaseBundleConfig ) ,
39
47
...makeBundleConfigVariants ( browserProfilingAddonBaseBundleConfig ) ,
48
+ ...makeBundleConfigVariants ( moduleMetadataAddonBaseBundleConfig )
40
49
) ;
41
50
} ) ;
42
51
File renamed without changes.
You can’t perform that action at this time.
0 commit comments