From 9341feeac14ceda92fb5f729dd135aca8e9fcda6 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Sat, 11 Apr 2026 17:26:45 -0700 Subject: [PATCH] Ignore package-lock.json (project uses bun.lock) npm subprocesses can regenerate a stray package-lock.json (last time this happened, it was reverted in 3ca60a8). Add it to .gitignore so it stops showing up as untracked. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index c9ddacd18..9e7425369 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ # Dependencies node_modules/ +# npm lockfile (project uses bun.lock; npm may regenerate this as a side +# effect of npm subprocesses, but it should not be tracked) +package-lock.json + # Generated files dist/ build/