From bc6237569fea3f0e7325360c61062596963e70e2 Mon Sep 17 00:00:00 2001 From: StillHammer Date: Mon, 27 Oct 2025 16:22:09 +0800 Subject: [PATCH] Update .gitignore with Node.js and additional ignore rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add comprehensive ignore patterns for Node.js projects, build artifacts, logs, and temporary files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.gitignore b/.gitignore index a76a472..2446d48 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,21 @@ # Environment variables .env .env.local +.env.production + +# Node.js +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +.npm +.yarn/ +dist/ +build/ +*.tsbuildinfo +.next/ +out/ # Python __pycache__/ @@ -12,6 +27,8 @@ venv/ env/ ENV/ .venv +*.egg-info/ +.pytest_cache/ # OCR outputs (optional - uncomment if you don't want to track OCR results) # Raw/*/OCR/ @@ -35,3 +52,18 @@ Thumbs.db # PDF files *.pdf + +# Logs +*.log +logs/ + +# Temporary files +*.tmp +*.temp +.cache/ + +# Build artifacts +*.exe +*.dll +*.so +*.dylib