minify-html/bench/build.sh

17 lines
168 B
Bash
Executable File

#!/usr/bin/env bash
set -e
pushd "$(dirname "$0")"
pushd ../nodejs
npm run build
npm run build-binary
popd
pushd minify-html-bench
cargo build --release
popd
popd