From 2c28621e40b1efacb5f0173191e5fe10de3271e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C173384004+Eric-Johnson-1=40users=2Enoreply=2Egith?= =?UTF-8?q?ub=2Ecom=E2=80=9D?= <173384004+Eric-Johnson-1@users.noreply.github.com> Date: Sun, 30 Mar 2025 14:35:05 +0300 Subject: [PATCH] =?UTF-8?q?feat(version-check):=20=F0=9F=8C=88=20Version?= =?UTF-8?q?=20Manager=20Diversity=20-=20NVM=20Joins=20the=20Party!=20?= =?UTF-8?q?=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Give nvm some love in our Node.js version check message! 🚀 - Added installation guidance for nvm alongside n - Expanded version manager recommendations - Improved developer experience with more comprehensive instructions Why? Because version managers are like pizza toppings - everyone has their favorite! 🍕 Now developers using nvm will feel the warmth and inclusivity of our error message. No developer left behind! 💻✨ --- src/utils/version-check.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/utils/version-check.js b/src/utils/version-check.js index 9830336..2e21d2d 100644 --- a/src/utils/version-check.js +++ b/src/utils/version-check.js @@ -32,5 +32,10 @@ export function checkNodeVersion() { "• n: npm install -g n (https://www.npmjs.com/package/n)" ) ); + console.log( + chalk.yellow( + "• nvm: Check https://github.com/nvm-sh/nvm#installing-and-updating for the most up-to-date installation command." + ) + ); } }