From 76ee438f21034903dee2da95707a142bb24cf419 Mon Sep 17 00:00:00 2001 From: juancwu Date: Mon, 26 Jan 2026 18:20:18 +0000 Subject: [PATCH] add default command to Taskfile --- Taskfile.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Taskfile.yml b/Taskfile.yml index 1bdb5e1..20bdd43 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,6 +1,9 @@ # yaml-language-server: $schema=https://taskfile.dev/schema.json version: '3' tasks: + default: + cmds: + - go run ./cmd/tui/main.go build: cmds: - go build -o ./bin/tui ./cmd/tui/main.go