wip more dioramas

This commit is contained in:
David Allemang
2026-07-09 17:33:04 -04:00
parent c126a42599
commit 046fb89214
11 changed files with 282 additions and 937 deletions

View File

@@ -1,5 +1,6 @@
[tools]
node = "latest"
"npm:vite" = "8.1.3"
tinymist = "0.15.0"
typst = "0.15.0"
@@ -7,15 +8,17 @@ typst = "0.15.0"
run = [
"rm .typ-bundle/*",
"typst compile main.typ .typ-bundle --format bundle --features bundle,html",
"npx vite build",
"vite build",
]
sources = ["!dist", "!node_modules", "!.idea", "**/*.typ", "src/**/*"]
[tasks.dev-vite]
run = "npx vite dev"
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"]