typst-web-template/test_template/build.sh
Jean-Marie 'Histausse' Mineau 64e270a868
add build script
2026-06-17 10:04:52 +02:00

8 lines
216 B
Bash

MAIN="$(dirname $(realpath "${0}"))/main.typ"
if [ "${1}" = "watch" ]; then
typst watch --features bundle,html --format bundle "${MAIN}"
else
typst compile --features bundle,html --format bundle "${MAIN}"
fi