From 5b7c9c5157f7ad5b85e517a8e9a6401d9cd07e6b Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Mon, 23 Mar 2026 19:54:44 +0100 Subject: [PATCH] feat: add make watch for live dashboard with colors --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f186f52..1bc30e9 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: build test lint vet clean +.PHONY: build test lint vet clean watch build: go build -o vmux ./... @@ -11,5 +11,8 @@ lint: vet vet: go vet ./... +watch: build + watch --color -n2 ./vmux list + clean: rm -f vmux