Skip to content

Commit f9fc0d4

Browse files
authored
Fix package manager search order (#450)
1 parent 8fd8937 commit f9fc0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/cli/src/services/package-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Effect } from "effect"
22
import { detect } from "package-manager-detector"
33

4-
const PACKAGE_MANAGERS = ["npm", "bun", "pnpm", "yarn", "yarn@berry"] as const
4+
const PACKAGE_MANAGERS = ["npm", "bun", "pnpm", "yarn@berry", "yarn"] as const
55

66
const BINARY_RUNNERS = {
77
npm: ["npx", "--yes"],

0 commit comments

Comments
 (0)