Skip to content

Commit a9e49a3

Browse files
DavidJGrimsleydanstepanov
authored andcommitted
fix: clarify Node version error branding
1 parent e5da0a8 commit a9e49a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function run() {
2121
const isVersionOk = major > 20 || (major === 20 && (minor > 19 || (minor === 19 && patch >= 4)));
2222

2323
if (!isVersionOk) {
24-
console.error(`Error: rn-new requires Node.js version 20.19.4 or higher.`);
24+
console.error(`Error: create-expo-stack requires Node.js version 20.19.4 or higher.`);
2525
console.error(`You are currently running Node.js ${process.versions.node}.`);
2626
console.error('Please update your Node version.');
2727
process.exit(1);

0 commit comments

Comments
 (0)