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