blob: 360c6d7520a71d2d4f8826fdd9451da120ba03fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tools]
hugo-extended = "v0.157.0"
wrangler = "4.72.0"
[tasks.clean]
description = "Clean already built static site"
run = "rm -rf public"
hide = true
[tasks.build]
description = "Build static website"
run = "hugo"
[tasks.serve]
description = "Server website with draft posts"
run = "hugo serve --buildDrafts"
[tasks.deploy]
description = "Deploy to cloudflare"
run = "npx wrangler pages deploy public"
depends = ['clean', 'build']
|