From 1515738402e166a99612b742d40e6d7e91aa0d49 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Tue, 28 Jul 2026 10:07:57 +0530 Subject: [PATCH] fix: ignore package-lock.json in .gitignore The hawk-graph project has no npm dependencies (package.json has no dependencies field). The package-lock.json was generated by 'npm install' and should not be tracked in version control. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fa43513..42544fa 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ build/ dist/ node_modules/ +package-lock.json