UNPKG

modern-dev-cli

Version:

A modern, comprehensive CLI toolkit for streamlining development workflows with Git operations, project scaffolding, and file management

10 lines (7 loc) 368 B
import chalk from 'chalk'; export const logger = { success: (message) => console.log(chalk.green('✓ SUCCESS: ' + message)), error: (message, error) => console.log(chalk.red('✗ ERROR: ' + message), error || ''), info: (message) => console.log(chalk.blue('ℹ INFO: ' + message)), warn: (message) => console.log(chalk.yellow('⚠ WARNING: ' + message)) };