UNPKG

mlgc

Version:

MLGC is a CLI program that allows you to easily copy all Git changes to a folder for easy uploading or sharing.

11 lines (8 loc) 355 B
const chalk = require("chalk"); const log = { success: (message) => console.log(chalk.green(`[SUCCESS] ${message}`)), info: (message) => console.log(chalk.cyan(`[INFO] ${message}`)), warn: (message) => console.log(chalk.yellow(`[WARN] ${message}`)), error: (message) => console.log(chalk.red(`[ERROR] ${message}`)), }; module.exports = { log };