From c178f9121b99c30261c3f92169db7f6cac3fd129 Mon Sep 17 00:00:00 2001 From: David Allemang Date: Thu, 16 Jul 2026 21:27:37 -0400 Subject: [PATCH] mise --- mise.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mise.toml diff --git a/mise.toml b/mise.toml new file mode 100644 index 00000000..1032d16d --- /dev/null +++ b/mise.toml @@ -0,0 +1,24 @@ +[tools] +node = "latest" +"npm:vite" = "8.1.3" +tinymist = "0.15.0" +typst = "0.15.0" + +[tasks.build] +run = [ + "rm .typ-bundle/*", + "typst compile main.typ .typ-bundle --format bundle --features bundle,html", + "vite build", +] +sources = ["!dist", "!node_modules", "!.idea", "**/*.typ", "src/**/*"] + +[tasks.dev-vite] +run = "vite dev" +sources = ["!dist", "!node_modules", "!.idea", "**/*.typ", "src/**/*"] + +[tasks.dev-typ] +run = "typst watch main.typ .typ-bundle --format bundle --features bundle,html --no-serve" +sources = ["!dist", "!node_modules", "!.idea", "**/*.typ", "src/**/*"] + +[tasks.dev] +depends = ["dev-vite", "dev-typ"] \ No newline at end of file