Merge pull request #2337 from serverless/standardize-command-desc

standardize commands decription
This commit is contained in:
Florian Motlik 2016-10-12 15:18:12 +02:00 committed by GitHub
commit d8a9a0a2ee
8 changed files with 9 additions and 9 deletions

View File

@ -23,7 +23,7 @@ class Create {
this.commands = {
create: {
usage: 'Create new Serverless Service.',
usage: 'Create new Serverless service',
lifecycleEvents: [
'create',
],

View File

@ -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',
],

View File

@ -6,7 +6,7 @@ class Info {
this.commands = {
info: {
usage: 'Displays information about the service.',
usage: 'Display information about the service',
lifecycleEvents: [
'info',
],

View File

@ -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',
],

View File

@ -6,7 +6,7 @@ class Invoke {
this.commands = {
invoke: {
usage: 'Invokes a deployed function.',
usage: 'Invoke a deployed function',
lifecycleEvents: [
'invoke',
],

View File

@ -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',
],

View File

@ -6,7 +6,7 @@ class Remove {
this.commands = {
remove: {
usage: 'Remove resources.',
usage: 'Remove Serverless service and all resources',
lifecycleEvents: [
'remove',
],

View File

@ -11,7 +11,7 @@ class Tracking {
this.commands = {
tracking: {
usage: 'Enable or disable usage tracking.',
usage: 'Enable or disable usage tracking',
lifecycleEvents: [
'tracking',
],