Philipp Muens 1411fb1684 Merge pull request #2253 from svdgraaf/feature/verbose-info-stack-output
Add Stack outputs to verbose info and deploy output
2016-10-13 11:27:30 -07:00

33 lines
625 B
JavaScript

'use strict';
class Info {
constructor(serverless) {
this.serverless = serverless;
this.commands = {
info: {
usage: 'Display information about the service',
lifecycleEvents: [
'info',
],
options: {
stage: {
usage: 'Stage of the service',
shortcut: 's',
},
region: {
usage: 'Region of the service',
shortcut: 'r',
},
verbose: {
usage: 'Display Stack output',
shortcut: 'v',
},
},
},
};
}
}
module.exports = Info;