From 1ce72df4fdba131a64914e94ff804173545fba5e Mon Sep 17 00:00:00 2001 From: Igor Klopov Date: Fri, 23 Dec 2016 20:24:22 +0300 Subject: [PATCH] show `Using Node.js` only for npm deployment type (#183) --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 8527da9..dc3357d 100644 --- a/lib/index.js +++ b/lib/index.js @@ -210,7 +210,7 @@ export default class Now extends EventEmitter { } } - if (!quiet && deployment.nodeVersion) { + if (!quiet && deploymentType === 'npm' && deployment.nodeVersion) { if (engines && engines.node) { if (missingVersion) { console.log(`> Using Node.js ${chalk.bold(deployment.nodeVersion)} (default)`)