From 2a4f0e82d93ad54bc7a85fdca38d1510f0c5e10c Mon Sep 17 00:00:00 2001 From: Bruno Centanaro <67611350+brunocentanaro@users.noreply.github.com> Date: Sun, 30 Nov 2025 11:44:47 -0300 Subject: [PATCH] Add support for 'bun.lock' in LOCK_FILE_TO_MANAGER --- src/constants.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/constants.ts b/src/constants.ts index 596d69c..895ee49 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -50,6 +50,7 @@ export const LOCK_FILE_TO_MANAGER = { ['yarn.lock']: 'yarn', ['package-lock.json']: 'npm', ['bun.lockb']: 'bun', + ['bun.lock']: 'bun', ['pnpm-lock.yaml']: 'pnpm', } as const