Socket
Socket
Sign inDemoInstall

rollup-plugin-filesize

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-filesize - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

6

dist/index.js

@@ -77,4 +77,6 @@ 'use strict';

return bundle[fileName];
}).forEach(function (bundle) {
return console.log(getData(outputOptions, bundle.code));
}).filter(function (currentBundle) {
return !currentBundle.isAsset;
}).forEach(function (currentBundle) {
console.log(getData(outputOptions, currentBundle.code));
});

@@ -81,0 +83,0 @@ }

{
"name": "rollup-plugin-filesize",
"version": "6.0.0",
"version": "6.0.1",
"description": "A rollup plugin to show filesize in the cli",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -72,5 +72,8 @@ import fileSize from "filesize";

.map(fileName => bundle[fileName])
.forEach(bundle => console.log(getData(outputOptions, bundle.code)));
.filter(currentBundle => !currentBundle.isAsset)
.forEach((currentBundle) => {
console.log(getData(outputOptions, currentBundle.code))
});
}
};
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc