- progress on chalk deno

This commit is contained in:
nickolay 2021-04-22 13:43:49 +03:00
parent f8a3642a81
commit dcc200ab1b
8 changed files with 634 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import ansiStyles from 'ansi-styles';
import supportsColor from 'supports-color';
import ansiStyles from './ansi-styles/index.js';
import supportsColor from './supports-color/index.js';
import {
stringReplaceAll,
stringEncaseCRLFWithFirstIndex
@ -7,6 +7,7 @@ import {
import template from './templates.js';
const {stdout: stdoutColor, stderr: stderrColor} = supportsColor;
const {isArray} = Array;
const GENERATOR = Symbol('GENERATOR');