From ab71cc5aa1e84ddec9ec9e317f7b7ffc3a3059bf Mon Sep 17 00:00:00 2001 From: nik_garakapati Date: Fri, 7 Aug 2026 01:49:21 +0530 Subject: [PATCH] Expand .gitignore for Antora build artifacts and local tooling noise. Ignore cache, logs, editor files, and package-lock.json so only yarn.lock remains the committed lockfile. --- .gitignore | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 75438657..e9c42cec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,26 @@ -.idea/ +# Dependencies +node_modules/ + +# Antora build output and cache +build/ +.cache/ +antora.log + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Lockfile — yarn.lock is the committed source of truth +package-lock.json + +# OS .DS_Store -node_modules -build +Thumbs.db + +# Editors / IDEs +.idea/ +.vscode/ +*.swp +*~