@@ -33,7 +33,7 @@ async function loadEnvironmentFile(): Promise<void> {
3333 if ( ! envFile ) return
3434
3535 try {
36- console . log ( `ℹ️ Loading environment variables from: ${ envFile } ` )
36+ console . log ( `ℹ️ Loading environment variables from: ${ envFile } ` )
3737
3838 const result = dotenvConfig ( { path : envFile } )
3939 if ( result . error ) throw result . error
@@ -46,11 +46,11 @@ async function loadEnvironmentFile(): Promise<void> {
4646 const injectedVars = Object . keys ( result . parsed )
4747 console . log ( `✅ Injected environment variables: ${ injectedVars . join ( ', ' ) } ` )
4848 injectedVars . forEach ( key => {
49- console . log ( ` ${ key } =${ result . parsed ! [ key ] } ` )
49+ console . log ( ` ${ key } =${ result . parsed ! [ key ] } ` )
5050 } )
5151 }
5252 } catch ( error ) {
53- console . log ( `⚠️ Failed to load environment file ${ envFile } : ${ error instanceof Error ? error . message : String ( error ) } ` )
53+ console . log ( `⚠️ Failed to load environment file ${ envFile } : ${ error instanceof Error ? error . message : String ( error ) } ` )
5454 }
5555}
5656
@@ -94,10 +94,10 @@ export async function runWithRunner(
9494 * Logging utilities with consistent formatting
9595 */
9696export const log = {
97- info : ( message : string ) => console . log ( chalk . blue ( `ℹ️ ${ message } ` ) ) ,
97+ info : ( message : string ) => console . log ( chalk . blue ( `ℹ️ ${ message } ` ) ) ,
9898 success : ( message : string ) => console . log ( chalk . green ( `✅ ${ message } ` ) ) ,
9999 error : ( message : string ) => console . log ( chalk . red ( `❌ ${ message } ` ) ) ,
100- warn : ( message : string ) => console . log ( chalk . yellow ( `⚠️ ${ message } ` ) ) ,
100+ warn : ( message : string ) => console . log ( chalk . yellow ( `⚠️ ${ message } ` ) ) ,
101101 step : ( message : string ) => console . log ( chalk . cyan ( `📋 ${ message } ` ) ) ,
102102 tool : ( tool : string , message : string ) =>
103103 console . log ( chalk . yellow ( `🔧 Running ${ tool } : ${ message } ` ) ) ,
0 commit comments