diff --git a/lib/plugins/create/create.js b/lib/plugins/create/create.js index d92a78f02..2e2d3b00a 100644 --- a/lib/plugins/create/create.js +++ b/lib/plugins/create/create.js @@ -23,7 +23,7 @@ class Create { this.commands = { create: { - usage: 'Create new Serverless Service.', + usage: 'Create new Serverless service', lifecycleEvents: [ 'create', ], diff --git a/lib/plugins/deploy/deploy.js b/lib/plugins/deploy/deploy.js index 6a4354078..e553e3a5b 100644 --- a/lib/plugins/deploy/deploy.js +++ b/lib/plugins/deploy/deploy.js @@ -6,7 +6,7 @@ class Deploy { this.commands = { deploy: { - usage: 'Deploy Service.', + usage: 'Deploy a Serverless service', lifecycleEvents: [ 'cleanup', 'initialize', @@ -36,7 +36,7 @@ class Deploy { }, commands: { function: { - usage: 'Deploys a single function from the service', + usage: 'Deploy a single function from the service', lifecycleEvents: [ 'deploy', ], diff --git a/lib/plugins/info/info.js b/lib/plugins/info/info.js index 97327bd9a..6cf97af92 100644 --- a/lib/plugins/info/info.js +++ b/lib/plugins/info/info.js @@ -6,7 +6,7 @@ class Info { this.commands = { info: { - usage: 'Displays information about the service.', + usage: 'Display information about the service', lifecycleEvents: [ 'info', ], diff --git a/lib/plugins/install/install.js b/lib/plugins/install/install.js index 9379a9741..cf50d0d9f 100644 --- a/lib/plugins/install/install.js +++ b/lib/plugins/install/install.js @@ -12,7 +12,7 @@ class Install { this.commands = { install: { - usage: 'Installs a Serverless service from GitHub', + usage: 'Install a Serverless service from GitHub', lifecycleEvents: [ 'install', ], diff --git a/lib/plugins/invoke/invoke.js b/lib/plugins/invoke/invoke.js index 307b8358f..5434126a6 100644 --- a/lib/plugins/invoke/invoke.js +++ b/lib/plugins/invoke/invoke.js @@ -6,7 +6,7 @@ class Invoke { this.commands = { invoke: { - usage: 'Invokes a deployed function.', + usage: 'Invoke a deployed function', lifecycleEvents: [ 'invoke', ], diff --git a/lib/plugins/logs/logs.js b/lib/plugins/logs/logs.js index d293967e5..3cb9b4db0 100644 --- a/lib/plugins/logs/logs.js +++ b/lib/plugins/logs/logs.js @@ -6,7 +6,7 @@ class Logs { this.commands = { logs: { - usage: 'Outputs the logs of a deployed function.', + usage: 'Output the logs of a deployed function', lifecycleEvents: [ 'logs', ], diff --git a/lib/plugins/remove/remove.js b/lib/plugins/remove/remove.js index 01b7cca14..e7d85cfc4 100644 --- a/lib/plugins/remove/remove.js +++ b/lib/plugins/remove/remove.js @@ -6,7 +6,7 @@ class Remove { this.commands = { remove: { - usage: 'Remove resources.', + usage: 'Remove Serverless service and all resources', lifecycleEvents: [ 'remove', ], diff --git a/lib/plugins/tracking/tracking.js b/lib/plugins/tracking/tracking.js index 10115bdaa..1eb4ab5f9 100644 --- a/lib/plugins/tracking/tracking.js +++ b/lib/plugins/tracking/tracking.js @@ -11,7 +11,7 @@ class Tracking { this.commands = { tracking: { - usage: 'Enable or disable usage tracking.', + usage: 'Enable or disable usage tracking', lifecycleEvents: [ 'tracking', ],