generated from SillyFreak/typst-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
52 lines (39 loc) · 1.17 KB
/
Justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
root := justfile_directory()
export TYPST_ROOT := root
[private]
default:
@just --list --unsorted
# generate manual
doc:
typst compile docs/manual.typ docs/manual.pdf
for f in $(find gallery -maxdepth 1 -name '*.typ'); do \
typst compile "$f"; \
done
typst compile --ppi 250 "gallery/thumbnail.typ" "thumbnail.png"
# run test suite
test *args:
cargo test
typst-test run {{ args }}
# update test cases
update *args:
typst-test update {{ args }}
# build the parser WASM plugin
plugin:
cargo build --release --target wasm32-unknown-unknown
cp target/wasm32-unknown-unknown/release/parser.wasm src/
# package the library into the specified destination folder
package target:
./scripts/package "{{target}}"
# install the library with the "@local" prefix
install: (package "@local")
# install the library with the "@preview" prefix (for pre-release testing)
install-preview: (package "@preview")
[private]
remove target:
./scripts/uninstall "{{target}}"
# uninstalls the library from the "@local" prefix
uninstall: (remove "@local")
# uninstalls the library from the "@preview" prefix (for pre-release testing)
uninstall-preview: (remove "@preview")
# run ci suite
ci: test doc