@@ -31,7 +31,7 @@ class ServerlessStepFunctions {
3131 deploy : {
3232 commands : {
3333 stepf : {
34- usage : 'Deploy the State Machine of Step functions' ,
34+ usage : 'Deploy the State Machine Step functions' ,
3535 lifecycleEvents : [
3636 'deploy' ,
3737 ] ,
@@ -47,7 +47,7 @@ class ServerlessStepFunctions {
4747 } ,
4848 commands : {
4949 activities : {
50- usage : 'Deploy the activities of Step functions ' ,
50+ usage : 'Deploy Step function Tasks ' ,
5151 lifecycleEvents : [
5252 'deploy' ,
5353 ] ,
@@ -67,7 +67,7 @@ class ServerlessStepFunctions {
6767 } ,
6868 } ,
6969 statemachines : {
70- usage : 'Deploy the StateMachines of Step functions ' ,
70+ usage : 'Deploy Step function StateMachines ' ,
7171 lifecycleEvents : [
7272 'deploy' ,
7373 ] ,
@@ -109,7 +109,7 @@ class ServerlessStepFunctions {
109109 } ,
110110 commands : {
111111 activities : {
112- usage : 'Remove the activities of Step functions ' ,
112+ usage : 'Remove Step function Tasks ' ,
113113 lifecycleEvents : [
114114 'remove' ,
115115 ] ,
@@ -129,7 +129,7 @@ class ServerlessStepFunctions {
129129 } ,
130130 } ,
131131 statemachines : {
132- usage : 'Remove the StateMachines of Step functions ' ,
132+ usage : 'Remove Step function StateMachines ' ,
133133 lifecycleEvents : [
134134 'remove' ,
135135 ] ,
@@ -359,7 +359,7 @@ class ServerlessStepFunctions {
359359 . then ( this . createStateMachine )
360360 . then ( ( ) => {
361361 this . serverless . cli . consoleLog ( '' ) ;
362- this . serverless . cli . log ( `Finish to deploy ${ this . options . name } step function` ) ;
362+ this . serverless . cli . log ( `Finish deployment of the ${ this . options . name } step function` ) ;
363363 let message = '' ;
364364 message += `${ chalk . yellow . underline ( 'Service Information' ) } \n` ;
365365 message += `${ chalk . yellow ( 'service:' ) } ${ this . service } \n` ;
@@ -372,7 +372,7 @@ class ServerlessStepFunctions {
372372 return BbPromise . resolve ( ) ;
373373 } ) ;
374374 }
375- this . serverless . cli . log ( 'Start to deploy all stateMachines of Step Functions ...' ) ;
375+ this . serverless . cli . log ( 'Start deployment of all Step function StateMachines ...' ) ;
376376 return BbPromise . bind ( this )
377377 . then ( this . yamlParse )
378378 . then ( this . getStateMachineNames )
0 commit comments