@@ -60,6 +60,7 @@ function plainPrintDeployedResources(
6060 environmentSuffix : config . functionsEnv ,
6161 environmentSid : result . environmentSid ,
6262 buildSid : result . buildSid ,
63+ runtime : result . runtime ,
6364 viewLiveLogs : getTwilioConsoleDeploymentUrl (
6465 result . serviceSid ,
6566 result . environmentSid
@@ -92,6 +93,7 @@ function prettyPrintConfigInfo(config: DeployLocalProjectConfig) {
9293{bold.cyan Root Directory}\t${ config . cwd }
9394{bold.cyan Dependencies}\t${ dependencyString }
9495{bold.cyan Env Variables}\t${ Object . keys ( config . env ) . join ( ', ' ) }
96+ {bold.cyan Runtime}\t\t${ config . runtime }
9597`
9698 ) ;
9799}
@@ -108,6 +110,7 @@ function plainPrintConfigInfo(config: DeployLocalProjectConfig) {
108110 rootDirectory : config . cwd ,
109111 dependencies : dependencyString ,
110112 environmentVariables : Object . keys ( config . env ) . join ( ',' ) ,
113+ runtime : config . runtime ,
111114 } ;
112115 writeOutput ( `configInfo\n${ printObjectWithoutHeaders ( printObj ) } \n` ) ;
113116}
@@ -131,9 +134,11 @@ function prettyPrintDeployedResources(
131134{bold.cyan Service:}
132135 ${ config . serviceName } {dim (${ result . serviceSid } )}
133136{bold.cyan Environment:}
134- ${ config . functionsEnv } {dim (${ result . environmentSid } )}
137+ ${ config . functionsEnv } {dim (${ result . environmentSid } )}
135138{bold.cyan Build SID:}
136139 ${ result . buildSid }
140+ {bold.cyan Runtime:}
141+ ${ result . runtime }
137142{bold.cyan View Live Logs:}
138143 ${ twilioConsoleLogsLink }
139144 ` . trim ( )
0 commit comments