From 70a033d51985a26c072871ec59d2e5d43f06eacf Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 14 Sep 2026 20:33:19 +0200 Subject: [PATCH] chore(make): add a `clean` target Removes the artifacts that are produced by the other targets and ignored by git, so a broken state can be reset without remembering which directories are generated. `helm dependency build` populates `charts`, the readme generator installs `node_modules` and packaging leaves the chart archive and its signature behind. Co-authored-by: Copilot --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 028d507..65496ba 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,11 @@ SHELL := /usr/bin/env bash -O globstar +# CLEAN +# ============================================================================== +PHONY+=clean +clean: + -rm -rf charts *.tar.gz *.tar.gz.sig node_modules + # MISSING DOT # ============================================================================== PHONY+=missing-dot