1
0
forked from HEL/circuiteria

updated compiler version + dependencies

This commit is contained in:
2025-03-01 21:22:08 +01:00
parent e1e561bb6c
commit ff0b91e683
32 changed files with 48 additions and 72 deletions

11
justfile Normal file
View File

@ -0,0 +1,11 @@
# Local Variables:
# mode: makefile
# End:
gallery_dir := "./gallery"
set shell := ["bash", "-uc"]
manual:
typst c manual.typ manual.pdf
gallery:
for f in "{{gallery_dir}}"/*.typ; do typst c --root . "$f" "${f%typ}png"; done