File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
rollup-plugin/src/rollup-bundle-analysis
vite-plugin/src/vite-bundle-analysis Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ export const rollupBundleAnalysisPlugin: BundleAnalysisUploadPlugin = ({
7777 fileName : fileName ,
7878 source : item . source ,
7979 formatString : assetFormatString ,
80+ metaFramework : output . metaFramework ,
8081 } ) ;
8182 assets . push ( asset ) ;
8283 } else if ( item ?. type === "chunk" ) {
@@ -89,6 +90,7 @@ export const rollupBundleAnalysisPlugin: BundleAnalysisUploadPlugin = ({
8990 fileName,
9091 source : item . code ,
9192 formatString : chunkFormatString ,
93+ metaFramework : output . metaFramework ,
9294 } ) ;
9395 assets . push ( asset ) ;
9496
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ export const viteBundleAnalysisPlugin: BundleAnalysisUploadPlugin = ({
7878 fileName : fileName ,
7979 source : item . source ,
8080 formatString : assetFormatString ,
81+ metaFramework : output . metaFramework ,
8182 } ) ;
8283 assets . push ( asset ) ;
8384 } else if ( item ?. type === "chunk" ) {
@@ -90,6 +91,7 @@ export const viteBundleAnalysisPlugin: BundleAnalysisUploadPlugin = ({
9091 fileName,
9192 source : item . code ,
9293 formatString : chunkFormatString ,
94+ metaFramework : output . metaFramework ,
9395 } ) ;
9496 assets . push ( asset ) ;
9597
You can’t perform that action at this time.
0 commit comments