@@ -34,42 +34,42 @@ export function handleError(error: unknown) {
3434
3535export const loggerInfo = ( content : string ) => {
3636 if ( ACTIVATION ) {
37- console . log ( bgYellow ( "CODEG INFO HINT:" ) , gray ( content as string ) ) ;
37+ console . log ( bgYellow ( "[ CODEG INFO HINT] :" ) , gray ( content as string ) ) ;
3838 }
3939} ;
4040
4141export const loggerWarring = ( content : string | unknown ) => {
4242 if ( ACTIVATION ) {
43- console . log ( bgYellow ( "CODEG WARRING HINT:" ) , yellow ( content as string ) ) ;
43+ console . log ( bgYellow ( "[ CODEG WARRING HINT] :" ) , yellow ( content as string ) ) ;
4444 }
4545} ;
4646
4747export const loggerSuccess = ( content : string ) => {
4848 if ( ACTIVATION ) {
49- console . log ( bgYellow ( "CODEG SUCCESS HINT:" ) , green ( content as string ) ) ;
49+ console . log ( bgYellow ( "[ CODEG SUCCESS HINT] :" ) , green ( content as string ) ) ;
5050 }
5151} ;
5252
5353export const loggerError = ( content : string | unknown ) => {
5454 if ( ACTIVATION ) {
55- console . log ( bgYellow ( "CODEG ERROR HINT:" ) , red ( content as string ) ) ;
55+ console . log ( bgYellow ( "[ CODEG ERROR HINT] :" ) , red ( content as string ) ) ;
5656 }
5757} ;
5858
5959export const printInfo = ( content : string ) => {
60- console . log ( bgYellow ( "CODEG INFO HINT:" ) , gray ( content as string ) ) ;
60+ console . log ( bgYellow ( "[ CODEG INFO HINT] :" ) , gray ( content as string ) ) ;
6161} ;
6262
6363export const printWarring = ( content : string ) => {
64- console . log ( bgYellow ( "CODEG WARRING HINT:" ) , yellow ( content as string ) ) ;
64+ console . log ( bgYellow ( "[ CODEG WARRING HINT] :" ) , yellow ( content as string ) ) ;
6565} ;
6666
6767export const printSuccess = ( content : string ) => {
68- console . log ( bgYellow ( "CODEG SUCCESS HINT:" ) , green ( content as string ) ) ;
68+ console . log ( bgYellow ( "[ CODEG SUCCESS HINT] :" ) , green ( content as string ) ) ;
6969} ;
7070
7171export const printError = ( content : string | unknown ) => {
72- console . log ( bgYellow ( "CODEG ERROR HINT:" ) , red ( content as string ) ) ;
72+ console . log ( bgYellow ( "[ CODEG ERROR HINT] :" ) , red ( content as string ) ) ;
7373} ;
7474
7575export function isValidPackageName ( projectName : string ) {
0 commit comments