minify-html/bench/build

26 lines
352 B
Plaintext
Raw Normal View History

2021-08-08 07:20:06 -04:00
#!/usr/bin/env bash
set -Eeuo pipefail
shopt -s nullglob
2021-08-08 07:23:53 -04:00
pushd "$(dirname "$0")" >/dev/null
2021-08-08 07:20:06 -04:00
pushd runners >/dev/null
2021-08-09 09:09:52 -04:00
npm i
2021-08-08 07:20:06 -04:00
for r in *; do
2021-08-09 09:19:37 -04:00
if [[ ! -d "$r" ]] || [[ "$r" == "node_modules" ]]; then
2021-08-08 07:20:06 -04:00
continue
fi
echo "Building $r..."
pushd "$r" >/dev/null
./build
popd >/dev/null
done
popd >/dev/null
echo "All done!"
2021-08-09 06:42:47 -04:00
popd >/dev/null