File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -9,16 +9,19 @@ async function runHealthCheck() {
99 console . log ( '🔍 Environment Variables:' ) ;
1010 console . log ( ' NETWORK:' , process . env . NETWORK ) ;
1111 console . log ( ' LIT_STATUS_BACKEND_URL:' , process . env . LIT_STATUS_BACKEND_URL ) ;
12- console . log ( ' LIT_STATUS_WRITE_KEY:' , process . env . LIT_STATUS_WRITE_KEY ? '[SET]' : '[NOT SET]' ) ;
13-
12+ console . log (
13+ ' LIT_STATUS_WRITE_KEY:' ,
14+ process . env . LIT_STATUS_WRITE_KEY ? '[SET]' : '[NOT SET]'
15+ ) ;
16+
1417 if ( ! NETWORK ) {
1518 throw new Error ( '❌ NETWORK is not set' ) ;
1619 }
17-
20+
1821 if ( ! process . env . LIT_STATUS_BACKEND_URL ) {
1922 throw new Error ( '❌ LIT_STATUS_BACKEND_URL is not set' ) ;
2023 }
21-
24+
2225 if ( ! process . env . LIT_STATUS_WRITE_KEY ) {
2326 throw new Error ( '❌ LIT_STATUS_WRITE_KEY is not set' ) ;
2427 }
Original file line number Diff line number Diff line change @@ -145,7 +145,9 @@ export class TinnyEnvironment {
145145 '[𐬺🧪 Tinny Environment𐬺] Done configuring environment current config: ' ,
146146 {
147147 ...this . processEnvs ,
148- PRIVATE_KEYS : this . processEnvs . PRIVATE_KEYS . map ( ( _ , index ) => `[PRIVATE_KEY_${ index } ]` ) ,
148+ PRIVATE_KEYS : this . processEnvs . PRIVATE_KEYS . map (
149+ ( _ , index ) => `[PRIVATE_KEY_${ index } ]`
150+ ) ,
149151 }
150152 ) ;
151153 }
You can’t perform that action at this time.
0 commit comments