Fix incorrect comment (#10603)

Fixes an errant comment from #10583.
This commit is contained in:
Trek Glowacki
2023-09-27 07:05:24 -05:00
committed by GitHub
parent 2f5b0aeeb1
commit cb37ff2c89
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -311,7 +311,7 @@ export async function scanParentDirs(
bunLockPath ? fs.readFile(bunLockPath, 'utf8') : null,
]);
// Priority order is Yarn > pnpm > npm > bun
// Priority order is bun with yarn lock > yarn > pnpm > npm > bun
if (bunLockBin && hasYarnLock) {
cliType = 'bun';
lockfilePath = bunLockPath;