File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,9 @@ module.exports = {
13
13
const serverlessYmlPath = path . join ( servicePath , 'serverless.yml' ) ;
14
14
return this . serverless . yamlParser
15
15
. parse ( serverlessYmlPath )
16
- . then ( ( serverlessFileParam ) => {
17
- this . serverless . variables . populateObject ( serverlessFileParam ) . then ( ( parsedObject ) => {
16
+ . then ( serverlessFileParam =>
17
+ this . serverless . variables . populateObject ( serverlessFileParam )
18
+ . then ( parsedObject => {
18
19
this . serverless . service . stepFunctions = { } ;
19
20
this . serverless . service . stepFunctions . stateMachines
20
21
= parsedObject . stepFunctions
@@ -39,8 +40,8 @@ module.exports = {
39
40
40
41
this . serverless . variables . populateService ( this . serverless . pluginManager . cliOptions ) ;
41
42
return BbPromise . resolve ( ) ;
42
- } ) ;
43
- } ) ;
43
+ } )
44
+ ) ;
44
45
} ,
45
46
46
47
getAllStateMachines ( ) {
You can’t perform that action at this time.
0 commit comments