File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,19 @@ targets.forEach(jsVersion => {
3333 outputFileBase : ( ) => `bundles/browserprofiling${ jsVersion === 'es5' ? '.es5' : '' } ` ,
3434 } ) ;
3535
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+
3644 builds . push (
3745 ...makeBundleConfigVariants ( baseBundleConfig ) ,
3846 ...makeBundleConfigVariants ( tracingBaseBundleConfig ) ,
3947 ...makeBundleConfigVariants ( browserProfilingAddonBaseBundleConfig ) ,
48+ ...makeBundleConfigVariants ( moduleMetadataAddonBaseBundleConfig )
4049 ) ;
4150} ) ;
4251
File renamed without changes.
You can’t perform that action at this time.
0 commit comments