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