From 4ba934031754e01b726c6771cf74b7a821fd90ea Mon Sep 17 00:00:00 2001 From: maddalax Date: Fri, 13 Sep 2024 21:55:18 -0500 Subject: [PATCH] cleanup starter template, add watch command --- framework/tooling/htmgo/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/tooling/htmgo/runner.go b/framework/tooling/htmgo/runner.go index 7d3ea8c..4f58aa4 100644 --- a/framework/tooling/htmgo/runner.go +++ b/framework/tooling/htmgo/runner.go @@ -15,7 +15,7 @@ var taskFile string func main() { commandMap := make(map[string]*flag.FlagSet) - commands := []string{"template", "run", "build", "setup", "css", "css-watch", "ast-watch", "watch", "go-watch", "watch"} + commands := []string{"template", "run", "watch", "build", "setup", "css", "css-watch", "ast-watch", "go-watch"} for _, command := range commands { commandMap[command] = flag.NewFlagSet(command, flag.ExitOnError)