We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e8c89 commit 22129bbCopy full SHA for 22129bb
src/index.js
@@ -69,7 +69,10 @@ export default function filesize(options = {}, env) {
69
generateBundle(outputOptions, bundle, isWrite) {
70
Object.keys(bundle)
71
.map(fileName => bundle[fileName])
72
- .forEach(bundle => console.log(getData(outputOptions, bundle.code)));
+ .filter(currentBundle => !currentBundle.isAsset)
73
+ .forEach((currentBundle) => {
74
+ console.log(getData(outputOptions, currentBundle.code))
75
+ });
76
}
77
};
78
0 commit comments