UNPKG

ts-project-builder

Version:

Rollup-based TypeScript builder with multi-format output and built-in common plugins.

14 lines (11 loc) 422 B
import { createColors } from 'colorette'; // @see https://no-color.org // @see https://www.npmjs.com/package/chalk const colors = createColors({ useColor: process.env.FORCE_COLOR !== '0' && !process.env.NO_COLOR }); const bold = colors.bold; const cyan = colors.cyan; const dim = colors.dim; const green = colors.green; const red = colors.red; export { bold, cyan, dim, green, red }; //# sourceMappingURL=colors.mjs.map