2023-12-06 05:51:32 +00:00
|
|
|
# show all recipes
|
|
|
|
default:
|
|
|
|
just --list --unsorted
|
|
|
|
|
|
|
|
# format toml
|
|
|
|
fmt:
|
2024-01-04 21:46:10 +00:00
|
|
|
taplo fmt example.toml
|
2023-12-06 05:51:32 +00:00
|
|
|
|
|
|
|
# validate toml
|
|
|
|
validate:
|
2024-01-04 21:46:10 +00:00
|
|
|
taplo lint example.toml
|
2023-12-06 05:51:32 +00:00
|
|
|
|
2023-12-21 22:23:57 +00:00
|
|
|
# create pdf
|
2023-12-06 05:51:32 +00:00
|
|
|
pdf:
|
2023-12-21 22:23:57 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
ed<<EOF
|
|
|
|
i
|
|
|
|
module.exports =
|
|
|
|
.
|
|
|
|
r !taplo get -f example.toml -o json
|
|
|
|
-1s/$/,
|
|
|
|
.r lambdas.js
|
|
|
|
w view.js
|
|
|
|
q
|
|
|
|
EOF
|
|
|
|
mustache view.js resume.template \
|
|
|
|
| groff -ms -t -Tpdf > example.pdf
|