diff --git a/local-cli/link/link.js b/local-cli/link/link.js index 9361a40a0..b4a817dda 100644 --- a/local-cli/link/link.js +++ b/local-cli/link/link.js @@ -2,6 +2,7 @@ const log = require('npmlog'); const path = require('path'); const uniq = require('lodash').uniq; const flatten = require('lodash').flatten; +const chalk = require('chalk'); const isEmpty = require('lodash').isEmpty; const promiseWaterfall = require('./promiseWaterfall'); @@ -32,7 +33,7 @@ const linkDependencyAndroid = (androidProject, dependency) => { const isInstalled = isInstalledAndroid(androidProject, dependency.name); if (isInstalled) { - log.info(`Android module ${dependency.name} is already linked`); + log.info(chalk.grey(`Android module ${dependency.name} is already linked`)); return null; } @@ -58,7 +59,7 @@ const linkDependencyIOS = (iOSProject, dependency) => { const isInstalled = isInstalledIOS(iOSProject, dependency.config.ios); if (isInstalled) { - log.info(`iOS module ${dependency.name} is already linked`); + log.info(chalk.grey(`iOS module ${dependency.name} is already linked`)); return; }