-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathmise.toml
More file actions
37 lines (26 loc) · 681 Bytes
/
mise.toml
File metadata and controls
37 lines (26 loc) · 681 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
[tools]
node = "24"
"npm:pnpm" = "latest"
[tools."github:dahlia/hongdown"]
version = "0.3.11"
[tools."github:dahlia/hongdown".platforms]
linux-x64 = "hongdown-*-x86_64-unknown-linux-musl.tar.bz2"
linux-arm64 = "hongdown-*-aarch64-unknown-linux-musl.tar.bz2"
[hooks]
postinstall = "pnpm install"
[tasks.fmt]
depends = ["fmt:pnpm", "fmt:md"]
[tasks."fmt:pnpm"]
run = "pnpm run fmt"
[tasks."fmt:md"]
run = "hongdown --write"
[tasks.check]
depends = ["check:pnpm", "check:md"]
[tasks."check:ci"]
depends = ["check:pnpm:ci", "check:md"]
[tasks."check:pnpm"]
run = "pnpm run check"
[tasks."check:pnpm:ci"]
run = "pnpm run check:ci"
[tasks."check:md"]
run = "hongdown --check"