From 58178b2eee183aa885b38e450164550debce35fb Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 23 Jan 2025 22:12:43 +0000 Subject: [PATCH] support bun.lock https://bun.sh/docs/install/lockfile --- source/package-manager/configs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/package-manager/configs.js b/source/package-manager/configs.js index 93afb59a..2e59f444 100644 --- a/source/package-manager/configs.js +++ b/source/package-manager/configs.js @@ -65,5 +65,5 @@ export const bunConfig = { // TODO: Bun doesn't support config get registry, this should be added in the future. See https://github.com/oven-sh/bun/issues/7140 getRegistryCommand: ['npm', ['config', 'get', 'registry']], tagVersionPrefixCommand: ['npm', ['config', 'get', 'tag-version-prefix']], - lockfiles: ['bun.lockb'], + lockfiles: ['bun.lockb', 'bun.lock'], };