File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,21 @@ import chalk from 'chalk'
2
2
3
3
export default {
4
4
info ( messages ) {
5
- console . log ( '' )
5
+ console . warn ( '' )
6
6
messages . forEach ( message => {
7
- console . log ( chalk . bold . cyan ( 'info' ) , '-' , message )
7
+ console . warn ( chalk . bold . cyan ( 'info' ) , '-' , message )
8
8
} )
9
9
} ,
10
10
warn ( messages ) {
11
- console . log ( '' )
11
+ console . warn ( '' )
12
12
messages . forEach ( message => {
13
- console . log ( chalk . bold . yellow ( 'warn' ) , '-' , message )
13
+ console . warn ( chalk . bold . yellow ( 'warn' ) , '-' , message )
14
14
} )
15
15
} ,
16
16
risk ( messages ) {
17
- console . log ( '' )
17
+ console . warn ( '' )
18
18
messages . forEach ( message => {
19
- console . log ( chalk . bold . magenta ( 'risk' ) , '-' , message )
19
+ console . warn ( chalk . bold . magenta ( 'risk' ) , '-' , message )
20
20
} )
21
21
} ,
22
22
}
You can’t perform that action at this time.
0 commit comments