You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our version-check.js, we tease two version managers (n and nvm) but only show love to n 😅 Let's give nvm its moment in the spotlight!
Current Situation
console.log(chalk.yellow("Alternatively, we recommend using version managers like 'n' or 'nvm' to manage Node.js versions:"));console.log(chalk.yellow("• n: npm install -g n (https://www.npmjs.com/package/n)"));
Proposed Change
Update the version check message to include installation instructions for both n and nvm:
console.log(chalk.yellow("Alternatively, we recommend using version managers like 'n' or 'nvm' to manage Node.js versions:"));console.log(chalk.yellow("• 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"));
🤔 Why This Matters
Equal representation for version managers! 🏳️🌈
Provide more comprehensive guidance for developers
Show that we care about user choice and flexibility
💡 Additional Context
Some developers prefer nvm, especially in cross-platform environments. Let's make sure they feel the love too!
🎉 Fun Fact
Choosing a version manager is like choosing a pizza topping - personal preference matters! 🍕
Is this a bug? Nope. Is it an improvement? Absolutely! 🚀
The text was updated successfully, but these errors were encountered:
Issue Description
In our
version-check.js
, we tease two version managers (n
andnvm
) but only show love ton
😅 Let's givenvm
its moment in the spotlight!Current Situation
Proposed Change
Update the version check message to include installation instructions for both
n
andnvm
:🤔 Why This Matters
💡 Additional Context
Some developers prefer
nvm
, especially in cross-platform environments. Let's make sure they feel the love too!🎉 Fun Fact
Choosing a version manager is like choosing a pizza topping - personal preference matters! 🍕
Is this a bug? Nope. Is it an improvement? Absolutely! 🚀
The text was updated successfully, but these errors were encountered: