mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const BbPromise = require('bluebird');
|
|
const validate = require('./lib/validate');
|
|
const initializeResources = require('./lib/initializeResources');
|
|
const createStack = require('./lib/createStack');
|
|
const deployFunctions = require('./lib/deployFunctions');
|
|
const updateStack = require('./lib/updateStack');
|
|
|
|
const SDK = require('../');
|
|
|
|
class AwsDeploy {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options;
|
|
this.provider = 'aws';
|
|
this.sdk = new SDK(serverless);
|
|
|
|
Object.assign(
|
|
this,
|
|
validate,
|
|
initializeResources,
|
|
createStack,
|
|
deployFunctions,
|
|
updateStack
|
|
);
|
|
|
|
this.hooks = {
|
|
'before:deploy:initializeResources': () => BbPromise.bind(this)
|
|
.then(this.validate),
|
|
|
|
'deploy:initializeResources': () => BbPromise.bind(this).then(this.initializeResources),
|
|
|
|
'deploy:createProviderStacks': () => BbPromise.bind(this).then(this.createStack),
|
|
|
|
'deploy:deploy': () => BbPromise.bind(this)
|
|
.then(this.deployFunctions)
|
|
.then(this.updateStack)
|
|
.then(() => this.serverless.cli.log('Deployment successful!')),
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = AwsDeploy;
|