1
0
Fork 0
mirror of synced 2024-08-17 02:51:55 +12:00
budibase/packages/cli/src/utils.js

14 lines
251 B
JavaScript
Raw Normal View History

const chalk = require("chalk")
exports.getHelpDescription = string => {
return chalk.cyan(string)
}
exports.getSubHelpDescription = string => {
return chalk.green(string)
}
exports.getError = error => {
return chalk.red(`Error - ${error}`)
}