Skip to content

Commit

Permalink
fix: re-allow Yarn 2 and above (#3411)
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao authored Nov 17, 2023
1 parent 601314e commit 006ac22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/cli/src/util/check-system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const NPM_ALLOWLISTED_VERSIONS = {
linux: '>= 5.4.0',
};
const YARN_ALLOWLISTED_VERSIONS = {
all: '^1.0.0',
all: '>1.0.0',
};

export function checkValidPackageManagerVersion(packageManager: string, version: string, allowlistedVersions: string) {
Expand Down

0 comments on commit 006ac22

Please sign in to comment.