-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
44 lines (31 loc) · 1.25 KB
/
mise.toml
File metadata and controls
44 lines (31 loc) · 1.25 KB
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
[tools]
deno = "2.7.4"
"npm:@mermaid-js/mermaid-cli" = "11.12.0"
pnpm = "10.30.3"
## task runner: `mise tasks` で一覧表示できる
[tasks.sync]
run = "deno run -A scripts/inotify-sync.ts"
[tasks."sync:watch"]
run = "deno run -A scripts/inotify-sync.ts --watch"
[tasks."init-content"]
description = "新規記事のテンプレートを生成する ($ mise run init-content -- --help でオプション確認)"
run = "deno run -A scripts/init-content.ts"
[tasks."changelog"]
description = "changelogに追加するYAML objectを出力する ($ mise run changelog -- --help)"
run = "deno run -A scripts/changelog-object.ts"
[tasks."test:scripts"]
run = "deno test scripts/init-content_test.ts scripts/inotify-sync_test.ts scripts/changelog-object_test.ts"
[tasks."dev:uta8a.net"]
run = "pnpm --dir site/uta8a.net dev"
[tasks."dev:chotto.uta8a.net"]
run = "pnpm --dir site/chotto.uta8a.net dev"
[tasks."dev:generated.uta8a.net"]
run = "pnpm --dir site/generated.uta8a.net dev"
[tasks."build:uta8a.net"]
run = "pnpm --dir site/uta8a.net build"
[tasks."build:chotto.uta8a.net"]
run = "pnpm --dir site/chotto.uta8a.net build"
[tasks."build:generated.uta8a.net"]
run = "pnpm --dir site/generated.uta8a.net build"
[tasks."dev:all"]
run = "deno run -A scripts/dev-all.ts"