This commit is contained in:
2026-07-03 21:48:03 -04:00
commit 2b1dd273b4
2 changed files with 30 additions and 0 deletions

24
mise.toml Normal file
View File

@@ -0,0 +1,24 @@
[tools]
tinymist = "0.15.0"
typst = "0.15.0"
[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"]