From e7e5bc2386b6873295acb9f8529a8d127570437c Mon Sep 17 00:00:00 2001 From: Chever John Date: Tue, 23 Jun 2026 09:40:05 +0800 Subject: [PATCH] chore: remove node_modules from tracking and add to .gitignore node_modules (14 MB, 240 files) accounted for 91.6% of tracked file size. Dependencies are reproducible via `cd deploy/tools && npm ci` using the committed package.json and package-lock.json. Co-Authored-By: Claude --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 403b982..6fb007a 100644 --- a/.gitignore +++ b/.gitignore @@ -100,6 +100,9 @@ Temporary Items data/ deploy/bin/ +# Node modules — install via `cd deploy/tools && npm ci` +node_modules/ + # Environment secrets .env deploy/.env