#!/bin/bash
set -xeuo pipefail
cd "$(git rev-parse --show-toplevel)/jakstys.lt"

hugo --cleanDestinationDir

cd public
zopfli=$(bazel run --run_under=echo @zopfli//:zopfli)
brotli=$(bazel run --run_under=echo @brotli//:brotli)

find . \
    -name '*.html' -or \
    -name '*.xml' -or \
    -name '*.txt' -or \
    -name '*.css' -or \
    -name '*.map' | parallel --bar "$zopfli {} && $brotli {}"