From 779b219301c2f7e2535e54e2eb817bf4c80959a4 Mon Sep 17 00:00:00 2001 From: RiccardoBracci Date: Tue, 11 Feb 2020 09:14:52 +0100 Subject: [PATCH] fix(@angular/cli): typo in error message --- packages/angular/cli/bin/ng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular/cli/bin/ng b/packages/angular/cli/bin/ng index 3341c622caaf..cae16e5be8e2 100755 --- a/packages/angular/cli/bin/ng +++ b/packages/angular/cli/bin/ng @@ -17,7 +17,7 @@ try { var version = process.versions.node.split('.').map(part => Number(part)); if (version[0] < 10 || version[0] === 11 || (version[0] === 10 && version[1] < 13)) { process.stderr.write( - 'Node.js version ' + process.verson + ' detected.\n' + + 'Node.js version ' + process.version + ' detected.\n' + 'The Angular CLI requires a minimum Node.js version of either v10.13 or v12.0.\n\n' + 'Please update your Node.js version or visit https://nodejs.org/ for additional instructions.\n', );