Skip to content

Commit

Permalink
docs: highlight cmd in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed Dec 13, 2020
1 parent 46fe731 commit 7a04399
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/requirements.config.js
@@ -1,3 +1,5 @@
const chalk = require('chalk');

module.exports = {
software: {
// java: '>= 1.8.x',
Expand All @@ -6,13 +8,15 @@ module.exports = {
npm: '>= 6.x',
yarn: {
semver: '1.16.x',
updateMessage: `Outdated 'yarn' found.\nRun 'brew upgrade yarn' to update.`,
updateMessage: `Outdated 'yarn' found.\nRun '${chalk.cyan('brew upgrade yarn')}' to update.`,
},
mvn: '^3.x',
nginx: {
semver: '^6.x',
optional: true,
installMessage: `This project is configured for NGINX but 'nginx' was not found on your path.\nRun 'brew install nginx' to install.`,
installMessage: `This project is configured for NGINX, but 'nginx' was not found on your path.\nRun '${chalk.cyan(
'brew install nginx'
)}' to install.`,
},
httpd: {
semver: '^2.x',
Expand Down

0 comments on commit 7a04399

Please sign in to comment.