From b43e4d10ce3a02fba4cb83e7f85ab6d030d9214f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Wed, 22 May 2024 18:13:06 +0200 Subject: [PATCH] refactor: .bun-version instead .bunrc --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 130c330..aea7160 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -33,7 +33,7 @@ const FILE_VERSION_READERS = { ".tool-versions": (content: string) => content.match(/^bun\s?(?.*?)$/m)?.groups?.version, ".bumrc": (content: string) => content, // https://github.com/owenizedd/bum - ".bunrc": (content: string) => content, + ".bun-version": (content: string) => content, }; export function readVersionFromFile(file: string): string | undefined {