From c6bf919344a464ff4f9bbb103f2eabb6363930d1 Mon Sep 17 00:00:00 2001 From: Fusion Date: Thu, 14 May 2026 06:03:13 +0200 Subject: [PATCH] fix(FN-002): remove invalid allowBuilds from pnpm-workspace.yaml and update clean target Fusion-Task-Id: FN-002 Fusion-Task-Lineage: 49cb7077-d805-4d39-9a27-ae50744f2839 --- .gitignore | 2 ++ Makefile | 2 +- pnpm-workspace.yaml | 2 -- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0dd3816..2702bbc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Dependencies node_modules/ .pnpm-store/ +package-lock.json +yarn.lock # Build outputs dist/ diff --git a/Makefile b/Makefile index 145d157..7119991 100644 --- a/Makefile +++ b/Makefile @@ -26,4 +26,4 @@ compose-down: docker compose down clean: - rm -rf node_modules apps/web/node_modules apps/api/.venv + rm -rf node_modules apps/web/node_modules apps/api/.venv .pnpm-store/ diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 159f7db..dac1824 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,7 +1,5 @@ packages: - 'apps/*' - 'packages/*' -allowBuilds: - esbuild: true onlyBuiltDependencies: - esbuild