File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,9 @@ module.exports = {
1313 const serverlessYmlPath = path . join ( servicePath , 'serverless.yml' ) ;
1414 return this . serverless . yamlParser
1515 . 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 => {
1819 this . serverless . service . stepFunctions = { } ;
1920 this . serverless . service . stepFunctions . stateMachines
2021 = parsedObject . stepFunctions
@@ -39,8 +40,8 @@ module.exports = {
3940
4041 this . serverless . variables . populateService ( this . serverless . pluginManager . cliOptions ) ;
4142 return BbPromise . resolve ( ) ;
42- } ) ;
43- } ) ;
43+ } )
44+ ) ;
4445 } ,
4546
4647 getAllStateMachines ( ) {
You can’t perform that action at this time.
0 commit comments