typst-web-template/test_template/build.sh
Jean-Marie 'Histausse' Mineau 7fe9b99535
start migration to bundle format
2026-06-17 12:40:20 +02:00

8 lines
234 B
Bash
Executable file

#/usr/bin/env 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