@@ -40,7 +40,9 @@ export const envListCommand = new Command<EnvCommandContext>()
4040 } ) ;
4141
4242 if ( envVars . length === 0 ) {
43- console . log ( "There are no environmental variables set on this application." ) ;
43+ console . log (
44+ "There are no environmental variables set on this application." ,
45+ ) ;
4446 return ;
4547 }
4648
@@ -133,7 +135,9 @@ export const envAddCommand = new Command<EnvCommandContext>()
133135 remove : [ ] ,
134136 } ) ;
135137
136- console . log ( `Environmental variable '${ variable } ' has been successfully set.` ) ;
138+ console . log (
139+ `Environmental variable '${ variable } ' has been successfully set.` ,
140+ ) ;
137141 } ) ;
138142
139143export const envUpdateValueCommand = new Command < EnvCommandContext > ( )
@@ -174,7 +178,9 @@ export const envUpdateValueCommand = new Command<EnvCommandContext>()
174178 remove : [ ] ,
175179 } ) ;
176180
177- console . log ( `The value of the environmental variable '${ variable } ' has been successfully updated.` ) ;
181+ console . log (
182+ `The value of the environmental variable '${ variable } ' has been successfully updated.` ,
183+ ) ;
178184 } ) ;
179185
180186export const envUpdateContextsCommand = new Command < EnvCommandContext > ( )
@@ -234,7 +240,9 @@ You can define no contexts, which is the equivalent to "All"`,
234240 remove : [ ] ,
235241 } ) ;
236242
237- console . log ( `The contexts of the environmental variable '${ variable } ' have been successfully updated` ) ;
243+ console . log (
244+ `The contexts of the environmental variable '${ variable } ' have been successfully updated` ,
245+ ) ;
238246 } ) ;
239247
240248export const envDeleteCommand = new Command < EnvCommandContext > ( )
@@ -270,5 +278,7 @@ export const envDeleteCommand = new Command<EnvCommandContext>()
270278 remove : [ envVar . id ] ,
271279 } ) ;
272280
273- console . log ( `Environmental variable '${ variable } ' has been successfully deleted` ) ;
281+ console . log (
282+ `Environmental variable '${ variable } ' has been successfully deleted` ,
283+ ) ;
274284 } ) ;
0 commit comments