From 058eac253ed6a723945f0c332f03f17e2e20e7bf Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Thu, 13 Aug 2026 15:04:37 +0200 Subject: [PATCH] Keep the dev-only root files out of the appstore package CLAUDE.md was shipped inside workflow_deck_automation.tar.gz. Exclude it along with two files in the same category: CLAUDE.local.md, which is gitignored private environment notes and must never end up in a downloadable package, and tsconfig.json, which exists purely so vite-plugin-dts has a config to resolve at build time and is dead weight on the server. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index a8c7ef1..3f84f48 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,9 @@ appstore: clean --exclude=./phpunit.xml \ --exclude=./README.md \ --exclude=./Makefile \ + --exclude=./CLAUDE.md \ + --exclude=./CLAUDE.local.md \ + --exclude=./tsconfig.json \ . | tar -xf - -C $(appstore_build_directory) tar -czf $(appstore_artifact_directory)/$(app_name).tar.gz -C $(build_directory)/appstore $(app_name)