diff options
author | Aria Shrimpton <me@aria.rip> | 2024-03-25 18:54:08 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-03-25 18:54:08 +0000 |
commit | e2d0806b2d944b87eb2a00bb46243a1d50487a3e (patch) | |
tree | 1096059e340ba64d6186fde7dc8810f9e7c2cb26 /thesis/Justfile | |
parent | 57c3c48f6660f905fb974cff7ec58f746a1a6970 (diff) |
update data & analysis
Diffstat (limited to 'thesis/Justfile')
-rw-r--r-- | thesis/Justfile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/thesis/Justfile b/thesis/Justfile index bd5a60d..2780fb9 100644 --- a/thesis/Justfile +++ b/thesis/Justfile @@ -1,10 +1,14 @@ default: build -build: +build: graphs latexmk -pdf -watch: +graphs: + for f in assets/*.json; do vl2png -s 1.5 $f ${f/json/png}; done + +watch-latex: latexmk -pdf -pvc clean: latexmk -c + rm -f assets/*.png |