1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 05:39:15 +03:00
css/script/selector-diff-report
2019-04-26 13:22:14 -07:00

27 lines
473 B
Bash
Executable File

#!/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
warn "Building the stats locally..."
cp $path after.json
key=".selectors.values[]"
jq -r $key before.json > before.txt
jq -r $key after.json > after.txt
diff {before,after}.txt && echo 'no diff!'
rm {before,after}.{json,txt}