commit a1cbd1657ef72dbce88fd86d3d33413584b007e8 Author: David Allemang Date: Wed Jul 8 20:10:57 2026 -0400 initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..29ab1f8f --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.pdf +.idea/ + +site/ +main.html +main.pdf +bundle/ +dist/ +node_modules/ diff --git a/mise.toml b/mise.toml new file mode 100644 index 00000000..305c9f8b --- /dev/null +++ b/mise.toml @@ -0,0 +1,16 @@ +[tools] +node = "latest" +tinymist = "0.15.0" +typst = "0.15.0" +watchexec = "latest" + +[tasks.dev] +run = [ + "typst watch main.typ bundle --format bundle --features bundle,html --no-serve & vite dev", +] + +[tasks.build] +run = [ + "typst compile main.typ node_modules/.typst-bundle --format bundle --features bundle,html", + "vite build", +]