This repository has been archived on 2025-10-15. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
minify-html/prebuild.sh
2020-07-11 23:25:36 +10:00

15 lines
197 B
Bash

#!/usr/bin/env bash
# Actions to take before initial or release build of main Rust library.
set -e
pushd "$(dirname "$0")"
# Generate crate::gen::* code.
pushd gen
npm i
bash gen.sh
popd
popd