*Types changed with chalk
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Derrick Hammer 2022-12-07 02:16:37 -05:00
parent ce713cdb15
commit d54fe4666f
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import * as os from "os";
import * as fs from "fs";
import path from "path";
import log from "loglevel";
import chalk, { ChalkInstance } from "chalk";
import chalk, { Chalk } from "chalk";
import prefix from "loglevel-plugin-prefix";
const config = new Config("lumeweb-relay");
@ -62,7 +62,7 @@ const colors = {
INFO: chalk.blue,
WARN: chalk.yellow,
ERROR: chalk.red,
} as { [level: string]: ChalkInstance };
} as { [level: string]: Chalk };
prefix.reg(log);
log.enableAll();