17 lines
340 B
TOML
17 lines
340 B
TOML
[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",
|
|
]
|