From 5157deda2a7dc2534e1b740c2a36b31c2333fdce Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Tue, 15 Oct 2024 15:33:16 -0300 Subject: [PATCH] chore(dev): move final binary from dist to .dist directory --- .gitignore | 2 +- makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4cf3c21..b91297b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ node_modules/ bin/ tmp/ -dist/ +.dist/ assets/css/uno.css diff --git a/makefile b/makefile index 1881343..50a6d29 100644 --- a/makefile +++ b/makefile @@ -52,7 +52,7 @@ build/templ: go run github.com/a-h/templ/cmd/templ@v0.2.707 generate build/app: - go build -o dist/app . + go build -o ./.dist/app . build/assets: npx unocss @@ -60,7 +60,7 @@ build/assets: build: build/templ build/assets build/app run: build - ./dist/app + ./.dist/app clean: if [[ -d "dist" ]]; then rm -r ./dist; fi