advanced-sitemap-generator
Version:
Easily create XML sitemaps for your website.
25 lines (22 loc) • 604 B
JavaScript
const chalk = require('chalk');
module.exports.appMsg = function (msg) {
console.log(chalk.magenta(msg));
};
module.exports.yellow = function (msg) {
console.log(chalk.yellow(msg));
};
module.exports.yellowBright = function (msg) {
console.log(chalk.yellowBright(msg));
};
module.exports.green = function (msg) {
console.log(chalk.green(msg));
};
module.exports.blue = function (msg) {
console.log(chalk.blue(msg));
};
module.exports.error = function (msg) {
console.log(chalk.red(msg));
};
module.exports.info = function (msg) {
console.log(chalk.white(msg));
};