mili
Version:
Scaffolding with continuous control over the development of the project.
17 lines (16 loc) • 466 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.error = exports.warn = exports.info = void 0;
const chalk = require("chalk");
function info(message) {
console.info(chalk.green(`[MILI] ${message}`));
}
exports.info = info;
function warn(message) {
console.warn(chalk.yellow(`[MILI] ${message}`));
}
exports.warn = warn;
function error(message) {
console.error(chalk.red(`[MILI] ${message}`));
}
exports.error = error;