UNPKG

mili

Version:

Scaffolding with continuous control over the development of the project.

11 lines (10 loc) 291 B
import * as chalk from 'chalk'; export function info(message) { console.info(chalk.green(`[MILI] ${message}`)); } export function warn(message) { console.warn(chalk.yellow(`[MILI] ${message}`)); } export function error(message) { console.error(chalk.red(`[MILI] ${message}`)); }