this repo has no description
1[tools]
2deno = "latest"
3watchexec = "latest"
4zig = "0.15.2"
5
6[tasks.watch]
7run = "watchexec -q -r -e scss,zig 'zig build serve -- --drafts'"
8
9[tasks.watch-index]
10run = "watchexec -q -r -e scss,zig,shtml,smd 'zig build -Ddrafts; and deno run --allow-env --allow-run npm:pagefind --site zig-out/website'"
11
12[tasks.dev]
13run = "zig build serve -- --drafts"
14
15[tasks.create-index]
16run = "deno run --allow-env --allow-run npm:pagefind --site zig-out/website"
17
18[tasks.dist]
19run = "zig build --summary all --verbose"
20depends_post = "create-index"
21
22[tasks.clean]
23run = "rm -rf zig-out"