Compare commits
2 Commits
88a5f74dfb
...
a759853f08
Author | SHA1 | Date |
---|---|---|
Bauke | a759853f08 | |
Bauke | 843e4e0595 |
|
@ -2,4 +2,3 @@
|
|||
.vscode/
|
||||
build/
|
||||
data/
|
||||
cv.typ
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
[env]
|
||||
CV_INCLUDE_LINKS = { condition = { env_not_set = ["CV_INCLUDE_LINKS"] }, value = "true" }
|
||||
CV_VERSION = { condition = { env_not_set = ["CV_VERSION"] }, value = "2024-03-01" }
|
||||
|
||||
# Shorthand to compile all the languages at once.
|
||||
[tasks.build]
|
||||
clear = true
|
||||
|
@ -5,12 +9,12 @@ dependencies = ["build-en", "build-nl"]
|
|||
|
||||
# Compile using the English locale.
|
||||
[tasks.build-en]
|
||||
env = { CV_LANG="en" }
|
||||
env = { CV_LANG = "en" }
|
||||
extend = "compile"
|
||||
|
||||
# Compile using the Dutch locale.
|
||||
[tasks.build-nl]
|
||||
env = { CV_LANG="nl" }
|
||||
env = { CV_LANG = "nl" }
|
||||
extend = "compile"
|
||||
|
||||
# Clean the repository by removing the build directory.
|
||||
|
@ -23,7 +27,14 @@ args = ["trash", "build"]
|
|||
[tasks.compile]
|
||||
clear = true
|
||||
dependencies = ["ensure-build-dir"]
|
||||
script = "./compile-cv.zsh"
|
||||
command = "typst"
|
||||
args = [
|
||||
"compile", "main.typ",
|
||||
"--input", "language=${CV_LANG}",
|
||||
"--input", "include_links=${CV_INCLUDE_LINKS}",
|
||||
"--input", "version=${CV_VERSION}",
|
||||
"build/CV-Bauke-${CV_LANG}.pdf",
|
||||
]
|
||||
|
||||
# Ensure that the build directory exists.
|
||||
[tasks.ensure-build-dir]
|
||||
|
@ -36,4 +47,4 @@ args = ["-p", "build"]
|
|||
[tasks.watch]
|
||||
clear = true
|
||||
command = "watchexec"
|
||||
args = ["-e", "toml,typ", "-i", "cv.typ", "--no-vcs-ignore", "makers build"]
|
||||
args = ["-e", "toml,typ", "--no-vcs-ignore", "makers build"]
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
# There's currently no way in Typst to provide values from the CLI in some way
|
||||
# so until the next version lands and https://github.com/typst/typst/pull/2894
|
||||
# becomes available, a script that renders a template has to be it for now.
|
||||
|
||||
# Define options based on environment variables or use default values.
|
||||
include_links=${CV_INCLUDE_LINKS:-"true"}
|
||||
language=${CV_LANG:-"en"}
|
||||
version="2024-03-01"
|
||||
|
||||
typst_template="#import \"main.typ\": cv
|
||||
|
||||
#cv(
|
||||
include_links: $include_links,
|
||||
language: \"$language\",
|
||||
version: \"$version\",
|
||||
)"
|
||||
|
||||
echo $typst_template > cv.typ
|
||||
|
||||
typst compile cv.typ "build/CV-Bauke-$CV_LANG.pdf"
|
12
flake.lock
12
flake.lock
|
@ -5,11 +5,11 @@
|
|||
"systems": "systems"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1701680307,
|
||||
"narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
|
||||
"lastModified": 1710146030,
|
||||
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
|
||||
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -20,11 +20,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1703499205,
|
||||
"narHash": "sha256-lF9rK5mSUfIZJgZxC3ge40tp1gmyyOXZ+lRY3P8bfbg=",
|
||||
"lastModified": 1710827359,
|
||||
"narHash": "sha256-/KY8hffTh9SN/tTcDn/FrEiYwTXnU8NKnr4D7/stmmA=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "e1fa12d4f6c6fe19ccb59cac54b5b3f25e160870",
|
||||
"rev": "5710127d9693421e78cca4f74fac2db6d67162b1",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
5
main.typ
5
main.typ
|
@ -5,7 +5,10 @@
|
|||
#import "./utilities/content-to-string.typ": content_to_string
|
||||
#import "./utilities/localize.typ": localize
|
||||
|
||||
#let cv(include_links: true, language: "", version: "") = {
|
||||
#{
|
||||
let (include_links, language, version) = sys.inputs
|
||||
let include_links = include_links == "true"
|
||||
|
||||
if language == "" {
|
||||
panic("No language option specified.")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue