From c5011073cf1df146aced0ff3dbe886cff5b8720e Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Fri, 17 Jul 2026 18:41:10 +0200 Subject: [PATCH] Fix(config): remove stale apps/ references from workspace configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cleans up leftover configuration from the apps/ → docs/ restructuring (see ADR-0001 update). Neither file had any effect anymore since the apps/ directory no longer exists, but both left stale references that could confuse future contributors. - pnpm-workspace.yaml: removed the unused "apps/*" package glob - .changeset/config.json: removed the "ignore": ["apps/docs"] entry, since docs/ is not tracked as a pnpm workspace package and the entry had no effect --- .changeset/config.json | 2 +- pnpm-workspace.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 3b48572..a369c84 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,5 @@ "access": "restricted", "baseBranch": "dev", "updateInternalDependencies": "patch", - "ignore": ["apps/docs"] + "ignore": [] } diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 9e3811f..2f99386 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,6 +1,5 @@ packages: - "packages/*" - - "apps/*" allowBuilds: esbuild: false