const BOLD = "\x1b[1m"; const GREEN = "\x1b[0;32m"; const YELLOW = "\x1b[1;33m"; const RED = "\x1b[0;31m"; const RESET = "\x1b[0m"; export function log(msg: string): void { console.log(`${GREEN}${BOLD}[✓]${RESET} ${msg}`); } export function warn(msg: string): void { console.log(`${YELLOW}${BOLD}[!]${RESET} ${msg}`); } export function err(msg: string): never { console.error(`${RED}${BOLD}[✗]${RESET} ${msg}`); process.exit(1); }