1
1
mirror of https://github.com/primer/css.git synced 2024-11-27 09:45:45 +03:00
css/script/bundle-size-report.js

97 lines
2.6 KiB
JavaScript
Raw Normal View History

2019-04-26 23:12:00 +03:00
#!/usr/bin/env node
2021-04-10 07:54:34 +03:00
const {join} = require('path')
2019-04-26 23:12:00 +03:00
const filesize = require('filesize')
const {table, getBorderCharacters} = require('table')
// ensure that K and B values line up vertically
const filesizeConfig = {symbols: {KB: 'K'}}
const prettySize = bytes => filesize(bytes, filesizeConfig)
2021-04-10 07:54:34 +03:00
function getBundles(path) {
const meta = require(join(path, './dist/meta.json'))
let metaBundles = Object.values(meta.bundles)
2021-04-10 07:54:34 +03:00
// fitler out support bundles, since they don't generate CSS
metaBundles = metaBundles.filter(bundle => !isSupportBundleName(bundle.name))
const bundles = {}
for (const bundle of metaBundles) {
2019-04-26 23:12:00 +03:00
const entry = {
name: bundle.name,
2019-04-26 23:12:00 +03:00
path: bundle.css,
2021-04-10 07:54:34 +03:00
stats: require(join(path, `./${bundle.stats}`))
2019-04-26 23:12:00 +03:00
}
2021-04-10 07:54:34 +03:00
bundles[bundle.name] = entry
2019-04-26 23:12:00 +03:00
}
2021-04-10 07:54:34 +03:00
return bundles
}
2019-04-26 23:12:00 +03:00
2021-04-10 07:54:34 +03:00
const tableOptions = {
columns: {
0: {
alignment: 'left'
},
7: {
alignment: 'left'
2019-04-26 23:12:00 +03:00
}
2021-04-10 07:54:34 +03:00
},
columnDefault: {
alignment: 'right'
},
border: getBorderCharacters('norc'),
drawHorizontalLine(index, size) {
return index <= 1 || index === size
2019-04-26 23:12:00 +03:00
}
2021-04-10 07:54:34 +03:00
}
2019-04-26 23:12:00 +03:00
2021-04-10 07:54:34 +03:00
// const sortByName = (a, b) => (a[0] < b[0] ? -1 : a[0] > b[0] ? 1 : 0)
const sortByGZipSize = (a, b) => b[3] - a[3]
// const sortByRawSize = (a, b) => b[5] - a[5]
const posNeg = v => (v > 0 ? '+ ' : v < 0 ? '- ' : '')
;(async () => {
const currentBundles = getBundles(join(__dirname, '../'))
const latestBundles = getBundles(join(__dirname, '../tmp/node_modules/@primer/css/'))
let data = []
// Build the rows
for (const name of Object.keys(currentBundles)) {
const current = currentBundles[name]
const latest = latestBundles[name]
data.push([
current.name,
current.stats.selectors.total,
current.stats.selectors.total - latest.stats.selectors.total,
current.stats.gzipSize,
current.stats.gzipSize - latest.stats.gzipSize,
current.stats.size,
current.stats.size - latest.stats.size,
current.path
])
}
2021-04-10 07:54:34 +03:00
// Sort the data
data = data.sort(sortByGZipSize)
// Beautify the data
data = data.map(row => {
row[2] = posNeg(row[2]) + `${row[2]}`.replace('-', '')
row[3] = prettySize(row[3])
row[4] = posNeg(row[4]) + `${prettySize(row[4])}`.replace('-', '')
row[5] = prettySize(row[5])
row[6] = posNeg(row[6]) + `${prettySize(row[6])}`.replace('-', '')
return row
})
2021-04-10 07:54:34 +03:00
// Adding header
data = [['name', 'selectors', '±', 'gzip size', '±', 'raw size', '±', 'path']].concat(data)
2021-04-10 07:54:34 +03:00
console.log(table(data, tableOptions))
})()
2021-04-02 21:06:31 +03:00
function isSupportBundleName(bundleName) {
// "support", "marketing-support", and any future ones?
2021-04-02 21:06:31 +03:00
return bundleName.endsWith('support')
}