|
12 | 12 | const BbPromise = require('bluebird');
|
13 | 13 | const _ = require('lodash');
|
14 | 14 |
|
| 15 | +const init = require('./stackops/init'); |
| 16 | +const functions = require('./stackops/functions'); |
| 17 | +const apiGateway = require('./stackops/apiGateway'); |
| 18 | +const userResources = require('./stackops/userResources'); |
| 19 | +const lambdaRole = require('./stackops/lambdaRole'); |
| 20 | +const events = require('./stackops/events'); |
| 21 | +const cwEvents = require('./stackops/cwEvents'); |
| 22 | + |
15 | 23 | module.exports = {
|
16 | 24 |
|
17 |
| - aliasInit: require('./stackops/init'), |
18 |
| - aliasHandleFunctions: require('./stackops/functions'), |
19 |
| - aliasHandleApiGateway: require('./stackops/apiGateway'), |
20 |
| - aliasHandleUserResources: require('./stackops/userResources'), |
21 |
| - aliasHandleLambdaRole: require('./stackops/lambdaRole'), |
22 |
| - aliasHandleEvents: require('./stackops/events'), |
23 |
| - aliasHandleCWEvents: require('./stackops/cwEvents'), |
| 25 | + aliasInit: init, |
| 26 | + aliasHandleFunctions: functions, |
| 27 | + aliasHandleApiGateway: apiGateway, |
| 28 | + aliasHandleUserResources: userResources, |
| 29 | + aliasHandleLambdaRole: lambdaRole, |
| 30 | + aliasHandleEvents: events, |
| 31 | + aliasHandleCWEvents: cwEvents, |
24 | 32 |
|
25 | 33 | aliasFinalize(currentTemplate, aliasStackTemplates, currentAliasStackTemplate) {
|
26 | 34 | const aliasStack = this._serverless.service.provider.compiledCloudFormationAliasTemplate;
|
|
0 commit comments