serverless/lib/cli/commands-options-schema.js
Tomasz Czubocha e490624dc5
fix: remove aws-profile option and plugin install/uninstall commands from schema (#12652)
* fix: remove aws-profile option

* fix: remove plugin install and uninstall
2024-07-01 13:26:16 -04:00

49 lines
937 B
JavaScript

export default {
help: {
usage: 'Show this message',
shortcut: 'h',
type: 'boolean',
},
version: {
usage: 'Show version info',
shortcut: 'v',
type: 'boolean',
},
verbose: {
usage: 'Show verbose logs',
type: 'boolean',
},
debug: {
usage: 'Namespace of debug logs to expose (use "*" to display all)',
type: 'string',
},
config: {
usage: 'Path to serverless config file',
shortcut: 'c',
type: 'string',
},
stage: {
usage: 'Stage of the service',
shortcut: 's',
type: 'string',
},
param: {
usage:
'Pass custom parameter values for "param" variable source (usage: --param="key=value")',
type: 'multiple',
},
region: {
usage: 'Region of the service',
shortcut: 'r',
type: 'string',
},
org: {
usage: 'Dashboard org name',
type: 'string',
},
app: {
usage: 'Dashboard app name',
type: 'string',
},
}