frontexpress/gzipsize.js
2017-01-14 15:02:50 +01:00

6 lines
172 B
JavaScript

import bytesize from 'bytesize';
bytesize.gzipSize(__dirname + '/frontexpress.min.js', true, (err, size) => {
console.log(`frontexpress size: ${size}(min+gzip)`);
});