helio-cli
Version:
An application for setting up various projects from graphql services, react applications, and assignments
24 lines (18 loc) • 369 B
JavaScript
import chalk from 'chalk'
export default {
log: (message) => {
console.log(chalk.green(message))
},
error: (err) => {
console.error(chalk.red(err))
},
info: (info) => {
console.log(chalk.cyan(info))
},
success: (message) => {
console.log(chalk.green(message))
},
warn: (warning) => {
console.warn(chalk.yellow(warning))
}
}