From b5c7c613de0b611f5aec37294b9e5d3cc7a535c0 Mon Sep 17 00:00:00 2001 From: tegwick Date: Thu, 27 Nov 2025 09:17:28 +0100 Subject: [PATCH] chore: add Node.js dependencies to gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add node_modules/ and package-lock.json to .gitignore to prevent tracking of npm dependencies and lock file. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 36b13f1..49c8491 100644 --- a/.gitignore +++ b/.gitignore @@ -174,3 +174,9 @@ cython_debug/ # PyPI configuration file .pypirc +# ---> Node +# Dependency directories +node_modules/ + +# npm package lock file +package-lock.json