multimodal

This commit is contained in:
2026-06-20 01:47:34 -04:00
parent 7575c514c3
commit c163e6a464
5 changed files with 68 additions and 25 deletions

View File

@@ -2,5 +2,23 @@
tinymist = "latest"
typst = "0.15.0"
[tasks.watch]
run = "typst watch main.typ site --format bundle --features bundle,html"
[tasks.watch-bundle]
run = "typst watch main.typ site --format bundle --features bundle,html --port 3000"
[tasks.watch-html]
run = "typst watch main.typ main.html --format html --features bundle,html --port 3080"
[tasks.watch-pdf]
run = "typst watch main.typ main.pdf --format pdf --features bundle,html"
[tasks.bundle]
run = "typst compile main.typ site --format bundle --features bundle,html"
[tasks.html]
run = "typst compile main.typ main.html --format html --features bundle,html"
[tasks.pdf]
run = "typst compile main.typ main.pdf --format pdf --features bundle,html"
[tasks.all]
depends = ["pdf", "html", "bundle"]