Skip to content

Commit

Permalink
Fix unsupported PNPM error message (#10094)
Browse files Browse the repository at this point in the history
PNPM 9 is now supported.

Co-authored-by: Jeff Widman <jeff@jeffwidman.com>
  • Loading branch information
deivid-rodriguez and jeffwidman authored Dec 12, 2024
1 parent 16adecd commit 2eea6cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ def raise_if_unsupported!(name, version)
return unless name == PNPMPackageManager::NAME
return unless Version.new(version) < Version.new("7")

raise ToolVersionNotSupported.new(PNPMPackageManager::NAME.upcase, version, "7.*, 8.*")
raise ToolVersionNotSupported.new(PNPMPackageManager::NAME.upcase, version, "7.*, 8.*, 9.*")
end

sig { params(name: String, version: T.nilable(String)).void }
Expand Down

0 comments on commit 2eea6cc

Please sign in to comment.