We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fcee7e commit 8be945cCopy full SHA for 8be945c
justfile
@@ -0,0 +1,28 @@
1
+
2
+default:
3
+ @just --list
4
5
+build:
6
+ just build-manual
7
+ ./gradlew shadowJar sourcesJar javadocJar
8
9
+build-manual:
10
+ make manual/SGE-MANUAL.pdf
11
12
+lint:
13
+ just lint-typst-all
14
15
+lint-typst *FILES:
16
+ typstyle --check {{ FILES }}
17
18
+lint-typst-all:
19
+ typstyle --check format-all manual/
20
21
+fix:
22
+ just fix-typst-all
23
24
+fix-typst *FILES:
25
+ typstyle --inplace {{ FILES }}
26
27
+fix-typst-all:
28
+ typstyle --inplace format-all manual/
makefile
@@ -0,0 +1,5 @@
+SGE_MANUAL_IMAGE_FILES := $(wildcard manual/*.png)
+manual/SGE-MANUAL.pdf: manual/SGE-MANUAL.typ manual/template.typ $(SGE_MANUAL_IMAGE_FILES)
+ typst compile $< $@
0 commit comments