1
1
mirror of https://github.com/primer/css.git synced 2024-12-02 07:53:06 +03:00
css/script/selector-diff-report

34 lines
661 B
Plaintext
Raw Normal View History

2019-01-24 02:31:51 +03:00
#!/bin/bash
set -e
function log() {
echo "$@" 1>&2
}
function warn() {
echo "$@" 1>&2
}
pkg="@primer/css"
path="dist/stats/primer.json"
warn "Pulling the old $path from unpkg.com..."
curl -sL "https://unpkg.com/$pkg/$path" > before.json
2019-01-24 02:31:51 +03:00
warn "Building the stats locally..."
npm run dist
cp $path after.json
2019-01-24 02:31:51 +03:00
function list_selectors() {
jq -r '.cssstats.selectors.values[]' $1 | sort
2019-01-24 02:31:51 +03:00
}
key=".selectors.values[]"
jq -r $key before.json > before.txt
jq -r $key after.json > after.txt
2019-01-24 02:31:51 +03:00
warn "[selector report] diff:"
2019-02-12 08:28:48 +03:00
(diff before.txt after.txt | tee selector-diff.log) || log "(no diff!)"
warn "[selector report] end"
2019-01-24 02:31:51 +03:00
rm {before,after}.{json,txt}