-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmise.toml
More file actions
48 lines (37 loc) · 938 Bytes
/
Copy pathmise.toml
File metadata and controls
48 lines (37 loc) · 938 Bytes
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
[settings]
lockfile = true
[tools]
bun = "1.3.14"
hk = "1.48.0"
node = "26.3.1"
pkl = "0.31.1"
typst = "0.15.0"
typstyle = "0.15.0"
[env]
HK_MISE = "1"
[hooks]
postinstall = "hk install --mise"
[tasks.install]
description = "Install npm dependencies with the locked Bun toolchain"
run = "bun install --frozen-lockfile"
[tasks.lint]
description = "Run formatting and lint checks"
run = "bun run lint"
[tasks.format]
description = "Format the repo"
run = "bun run format"
[tasks.typecheck]
description = "Run TypeScript checks"
run = "bun run typecheck"
[tasks.build]
description = "Build the site"
run = "bun run build"
[tasks.resume-pdf]
description = "Build the dark ATS-friendly resume PDF from shared resume data"
run = "bun scripts/build-resume-pdf.ts"
[tasks.pre-commit]
description = "Run the hk pre-commit hook"
run = "hk run pre-commit"
[tasks.pre-push]
description = "Run the hk pre-push hook"
run = "hk run pre-push"