Changed red x to info symbol when mods are already at the latest version

This commit is contained in:
Kallum Jones
2022-08-07 21:14:12 +01:00
parent ca0c596423
commit f7758680d1
4 changed files with 12 additions and 4 deletions

View File

@ -39,6 +39,14 @@ export default class PrintUtils {
this.spinner.succeed(print);
}
public warn(print: string) {
this.spinner.warn(print);
}
public info(print: string) {
this.spinner.info(` ${print}`);
}
public updateText(text: string) {
this.spinner.start(text);
}