Skip to content

Commit

Permalink
fix(turbo-utils): package manager available (vercel#4603)
Browse files Browse the repository at this point in the history
  • Loading branch information
tknickman committed Apr 17, 2023
1 parent 9f04686 commit 6fa2eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/turbo-utils/src/managers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async function getVersion(
async function getAvailablePackageManagers(): Promise<
Record<PackageManager, PackageManagerAvailable>
> {
const [yarn, pnpm, npm] = await Promise.all([
const [yarn, npm, pnpm] = await Promise.all([
getVersion("yarnpkg"),
getVersion("npm"),
getVersion("pnpm"),
Expand Down

0 comments on commit 6fa2eb1

Please sign in to comment.