From 705b40317fc3c90fb5a569621993e5a2f0a0c0bf Mon Sep 17 00:00:00 2001 From: Chris Pardy Date: Fri, 1 May 2026 10:30:36 -0400 Subject: [PATCH] chore: gitignore bun.lock MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bun auto-generates `bun.lock` when its scripts run (`bun run build`, `bun run lint`). The project's web package manager is npm (`package-lock.json`), so the bun lockfile is incidental — not the source of truth. Ignore it to keep the working tree clean for anyone who happens to invoke bun. Signed-off-by: Chris Pardy Signed-off-by: Trezy --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6c3a434..9a6e292 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ build/ .env*.local .worktrees/ next-env.d.ts +bun.lock -- 2.51.2