@@ -129,14 +129,14 @@ export default class ExportCommand extends Command {
129129 try {
130130 const { flags } = await this . parse ( ExportCommand ) ;
131131 const exportConfig = await setupExportConfig ( flags ) ;
132-
132+
133133 // Store apiKey in configHandler for session.json (return value not needed)
134134 createLogContext (
135135 this . context ?. info ?. command || 'cm:stacks:export' ,
136136 exportConfig . apiKey ,
137- exportConfig . authenticationMethod ,
137+ exportConfig . authenticationMethod
138138 ) ;
139-
139+
140140 // For log entries, only pass module (other fields are in session.json)
141141 exportConfig . context = { module : '' } ;
142142 //log.info(`Using Cli Version: ${this.context?.cliVersion}`, exportConfig.context);
@@ -151,7 +151,9 @@ export default class ExportCommand extends Command {
151151 if ( ! exportConfig . branches ?. length ) {
152152 writeExportMetaFile ( exportConfig ) ;
153153 }
154- log . success ( `The content of the stack ${ exportConfig . apiKey } has been exported successfully!` ) ;
154+ log . success (
155+ `The content of the stack ${ exportConfig . apiKey } has been exported successfully!` ,
156+ ) ;
155157 log . info ( `The exported content has been stored at '${ exportDir } '.` , exportConfig . context ) ;
156158 log . success ( `The log has been stored at '${ getLogPath ( ) } '.` , exportConfig . context ) ;
157159 } catch ( error ) {
@@ -160,6 +162,7 @@ export default class ExportCommand extends Command {
160162 }
161163 }
162164
165+
163166 // Assign values to exportConfig
164167 private assignExportConfig ( exportConfig : ExportConfig ) : void {
165168 // Note setting host to create cma client
0 commit comments