UNPKG

@open-utils/cli-colorize

Version:

A powerful and customizable library for terminal colors and styling. Add beautiful ANSI colors, progress bars, spinners, and formatted tables to your Node.js CLI applications.

22 lines (19 loc) 317 B
/** * ESM version of cli-colorize * * @module @open-utils/cli-colorize */ // Import CommonJS module import cjs from './colorize.js'; // Re-export everything export const { ColorizeLogger, ProgressBar, Spinner, logger, COLORS, THEMES, createWorkflow } = cjs; // Default export export default cjs;