@@ -31,7 +31,7 @@ class ServerlessStepFunctions {
31
31
deploy : {
32
32
commands : {
33
33
stepf : {
34
- usage : 'Deploy the State Machine of Step functions' ,
34
+ usage : 'Deploy the State Machine Step functions' ,
35
35
lifecycleEvents : [
36
36
'deploy' ,
37
37
] ,
@@ -47,7 +47,7 @@ class ServerlessStepFunctions {
47
47
} ,
48
48
commands : {
49
49
activities : {
50
- usage : 'Deploy the activities of Step functions ' ,
50
+ usage : 'Deploy Step function Tasks ' ,
51
51
lifecycleEvents : [
52
52
'deploy' ,
53
53
] ,
@@ -67,7 +67,7 @@ class ServerlessStepFunctions {
67
67
} ,
68
68
} ,
69
69
statemachines : {
70
- usage : 'Deploy the StateMachines of Step functions ' ,
70
+ usage : 'Deploy Step function StateMachines ' ,
71
71
lifecycleEvents : [
72
72
'deploy' ,
73
73
] ,
@@ -109,7 +109,7 @@ class ServerlessStepFunctions {
109
109
} ,
110
110
commands : {
111
111
activities : {
112
- usage : 'Remove the activities of Step functions ' ,
112
+ usage : 'Remove Step function Tasks ' ,
113
113
lifecycleEvents : [
114
114
'remove' ,
115
115
] ,
@@ -129,7 +129,7 @@ class ServerlessStepFunctions {
129
129
} ,
130
130
} ,
131
131
statemachines : {
132
- usage : 'Remove the StateMachines of Step functions ' ,
132
+ usage : 'Remove Step function StateMachines ' ,
133
133
lifecycleEvents : [
134
134
'remove' ,
135
135
] ,
@@ -359,7 +359,7 @@ class ServerlessStepFunctions {
359
359
. then ( this . createStateMachine )
360
360
. then ( ( ) => {
361
361
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` ) ;
363
363
let message = '' ;
364
364
message += `${ chalk . yellow . underline ( 'Service Information' ) } \n` ;
365
365
message += `${ chalk . yellow ( 'service:' ) } ${ this . service } \n` ;
@@ -372,7 +372,7 @@ class ServerlessStepFunctions {
372
372
return BbPromise . resolve ( ) ;
373
373
} ) ;
374
374
}
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 ...' ) ;
376
376
return BbPromise . bind ( this )
377
377
. then ( this . yamlParse )
378
378
. then ( this . getStateMachineNames )
0 commit comments