Repository URL to install this package:
|
Version:
1.2.6 ▾
|
"use strict";
const filesize = require('rollup-plugin-filesize');
const log = require('fliplog');
module.exports = () => filesize({
render(options, size, gzip, rollup) {
const _log$bold$fmtobj$retu = log.bold(rollup.format + ' ').fmtobj({
size,
gzip
}).return(),
text = _log$bold$fmtobj$retu.text,
datas = _log$bold$fmtobj$retu.datas;
return text + datas;
}
});