UNPKG

sls3-legacy

Version:

SLS3 Legacy - A fork of Serverless Framework v3

25 lines (22 loc) 674 B
'use strict'; module.exports = { 'region': { usage: 'Region of the service', shortcut: 'r', }, 'aws-profile': { usage: 'AWS profile to use with the command', }, 'app': { usage: 'Dashboard app' }, 'org': { usage: 'Dashboard org' }, 'use-local-credentials': { usage: 'Rely on locally resolved AWS credentials instead of loading them from ' + 'Serverless Framework Providers. This applies only to services signed into the Dashboard.', type: 'boolean', }, ...require('./service'), }; for (const optionSchema of Object.values(module.exports)) { if (!optionSchema.type) optionSchema.type = 'string'; }