diff --git a/package.json b/package.json index 6bc0214..ab9cd1f 100644 --- a/package.json +++ b/package.json @@ -84,16 +84,16 @@ ], "topics": { "service": { - "description": "Manage MESG Services" + "description": "Manage services" }, "daemon": { - "description": "Manage MESG Engine" + "description": "Manage the Engine" }, "marketplace": { - "description": "Let you interact with the MESG Marketplace" + "description": "Interact with the Marketplace" }, "account": { - "description": "Manage your MESG Accounts" + "description": "Manage accounts" } } }, diff --git a/src/docker-command.ts b/src/docker-command.ts index 3086ad1..fc4d5ba 100644 --- a/src/docker-command.ts +++ b/src/docker-command.ts @@ -34,7 +34,7 @@ export default abstract class extends Command { static flags = { ...Command.flags, name: flags.string({ - description: 'Name of the service running the engine', + description: 'Name of the docker service running the engine', required: true, default: 'engine' }), diff --git a/src/marketplace-command.ts b/src/marketplace-command.ts index 71fa2c1..1ac3749 100644 --- a/src/marketplace-command.ts +++ b/src/marketplace-command.ts @@ -28,7 +28,7 @@ export default abstract class MarketplaceCommand extends Command { }), passphrase: flags.string({ char: 'p', - description: 'Passphrase to unlock your account' + description: 'Passphrase to unlock the account' }) } @@ -65,7 +65,7 @@ export default abstract class MarketplaceCommand extends Command { const {account} = (await prompt({ type: 'list', name: 'account', - message: 'Choose the account to use to publish your service', + message: 'Select the account to use:', choices: addresses })) as { account: string } return account @@ -76,6 +76,6 @@ export default abstract class MarketplaceCommand extends Command { if (flags.passphrase) { return flags.passphrase } - return cli.prompt('Type your passphrase', {type: 'hide'}) + return cli.prompt('Type the passphrase', {type: 'hide'}) } } diff --git a/src/root-command.ts b/src/root-command.ts index 391de23..0d8c13a 100644 --- a/src/root-command.ts +++ b/src/root-command.ts @@ -9,7 +9,7 @@ import {format, inspect} from 'util' export default abstract class extends Command { static flags = { help: flags.help({char: 'h'}), - quiet: flags.boolean({char: 'q', description: 'Display only important information'}), + quiet: flags.boolean({char: 'q', description: 'Display only essential information'}), silent: flags.boolean({hidden: true}), }