rollup-plugin-sizes
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -0,1 +1,10 @@ | ||
## [1.0.4](https://github.com/tivac/rollup-plugin-sizes/compare/v1.0.3...v1.0.4) (2021-02-26) | ||
### Bug Fixes | ||
* don't crash when module doesn't map to an input ([#76](https://github.com/tivac/rollup-plugin-sizes/issues/76)) ([881eada](https://github.com/tivac/rollup-plugin-sizes/commit/881eada617a03765dfd0d7e5413b3b364b12650d)) | ||
## [1.0.3](https://github.com/tivac/rollup-plugin-sizes/compare/v1.0.2...v1.0.3) (2020-07-22) | ||
@@ -2,0 +11,0 @@ |
@@ -74,3 +74,3 @@ /* eslint-disable no-console */ | ||
const base = bases[idx]; | ||
const base = bases[idx] || ""; | ||
@@ -125,3 +125,3 @@ let total = 0; | ||
report({ | ||
input : input[idx], | ||
input : input[idx] || bundle.fileName, | ||
data, | ||
@@ -128,0 +128,0 @@ totals, |
{ | ||
"name": "rollup-plugin-sizes", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Show info about files/packages included with your rollup bundle", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
12545