blob: 123a8365ccabf0681706607b1c5f148801c1aaf7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import chalk from "chalk";
import { UtilityArgs } from "../types";
export default class Logger {
transform: string;
dry: boolean;
constructor(args: UtilityArgs) {
this.transform = args.transformer;
this.dry = args.dry;
}
modified(...args: any[]) {
console.log(
chalk.green(` MODIFIED `),
...args,
this.dry ? chalk.dim(`(dry run)`) : ""
);
}
unchanged(...args: any[]) {
console.log(
chalk.gray(` UNCHANGED `),
...args,
this.dry ? chalk.dim(`(dry run)`) : ""
);
}
skipped(...args: any[]) {
console.log(
chalk.yellow(` SKIPPED `),
...args,
this.dry ? chalk.dim(`(dry run)`) : ""
);
}
error(...args: any[]) {
console.log(
chalk.red(` ERROR `),
...args,
this.dry ? chalk.dim(`(dry run)`) : ""
);
}
info(...args: any[]) {
console.log(
chalk.bold(` INFO `),
...args,
this.dry ? chalk.dim(`(dry run)`) : ""
);
}
}
|