Skip to content

Commit 3cd30cc

Browse files
committed
Switch to yarn with multiple rollup versions to test
1 parent 73e524b commit 3cd30cc

4 files changed

Lines changed: 2654 additions & 4455 deletions

File tree

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,8 @@ function formatted (bndl) { return analyze(bndl, true) }
3939
function analyze (bundle, format) {
4040
let deps = {};
4141
let bundleSize = 0;
42-
// console.log(bundle)
4342
return new Promise((resolve, reject) => {
4443
let modules = bundle.modules.map((m, i) => {
45-
console.log(Object.assign({}, m, {code: 'redacted', originalCode: 'redacted'}));
4644
let id = m.id.replace(root, '');
4745
let size = Buffer.byteLength(m.code, 'utf8') || 0;
4846
bundleSize += size;

0 commit comments

Comments
 (0)