Skip to content

Commit 2f11513

Browse files
committed
reformat newlines in output
1 parent b5441c3 commit 2f11513

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-sizeme",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "display brotli and gzip sizes for rollup assets.",
55
"keywords": [
66
"rollup",

src/rollup-plugin-sizeme.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ export const sizeme = () => {
1515
name: 'sizeme',
1616
generateBundle(_, bundle, isWrite) {
1717
if (isWrite) {
18-
console.log()
1918
Object.keys(bundle)
2019
.map((file) => bundle[file])
2120
.filter((file) => file.type !== 'asset')
2221
.forEach((file) => showSize(file))
23-
console.log()
2422
}
2523
},
2624
}

0 commit comments

Comments
 (0)