From dee4ecbb3f813a79b01b04c45734a043e1255706 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 20 May 2015 11:32:46 -0700 Subject: [PATCH] build(gulp): fix typo in the npm version warning message --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e056c5cbdb..e12ef1a528 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -67,7 +67,7 @@ var angularBuilder = { } if (!semver.satisfies(foundNpmVersion, requiredNpmVersion)) { - issues.push('You are running unsuported npm version. Found: ' + foundNpmVersion + + issues.push('You are running unsupported npm version. Found: ' + foundNpmVersion + ' Expected: ' + requiredNpmVersion); }