Skip to content

Commit

Permalink
lint-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Feb 25, 2022
1 parent 5306abe commit 69cbdcb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/next/bin/next.ts
Expand Up @@ -111,7 +111,10 @@ if (process.versions.pnp === '3') {
.split('.')
.map((v) => Number(v))

if (nodeVersionParts[0] < 16 || (nodeVersionParts[0] === 16 && nodeVersionParts[1] < 14)) {
if (
nodeVersionParts[0] < 16 ||
(nodeVersionParts[0] === 16 && nodeVersionParts[1] < 14)
) {
log.warn(
'Node.js 16.14+ is required for Yarn PnP 3.20+. More info: https://github.com/vercel/next.js/pull/34688#issuecomment-1047994505'
)
Expand Down

0 comments on commit 69cbdcb

Please sign in to comment.