Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: highlight cmd in messages #141

Merged
merged 1 commit into from
Dec 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions tests/requirements.config.js
Original file line number Diff line number Diff line change
@@ -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