24 lines
414 B
TOML
24 lines
414 B
TOML
root = "."
|
|
tmp_dir = "tmp"
|
|
|
|
[build]
|
|
cmd = "go build -o ./tmp/writekit ."
|
|
full_bin = "./tmp/writekit"
|
|
include_ext = ["go", "html", "css", "js"]
|
|
exclude_dir = ["tmp", "node_modules", "studio/node_modules", ".git"]
|
|
exclude_regex = ["_test\\.go"]
|
|
delay = 500
|
|
poll = true
|
|
poll_interval = 1000
|
|
|
|
[log]
|
|
time = false
|
|
|
|
[color]
|
|
main = "magenta"
|
|
watcher = "cyan"
|
|
build = "yellow"
|
|
runner = "green"
|
|
|
|
[misc]
|
|
clean_on_exit = true
|