From 69cbdcbcdedf7cc78b74db664ff34b509ac243a1 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Fri, 25 Feb 2022 11:17:12 -0800 Subject: [PATCH] lint-fix --- packages/next/bin/next.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/next/bin/next.ts b/packages/next/bin/next.ts index e76309d22f12..bba1a9c9a009 100755 --- a/packages/next/bin/next.ts +++ b/packages/next/bin/next.ts @@ -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' )