From 791aec44de9d7dc59e662aeaa2a7fbbf8a9b9710 Mon Sep 17 00:00:00 2001 From: Anthony ESTEBE Date: Thu, 4 Jul 2019 20:48:24 +0700 Subject: [PATCH] remove aliases --- src/commands/account/list.ts | 2 -- src/commands/service/delete.ts | 2 -- src/commands/service/doc.ts | 2 -- 3 files changed, 6 deletions(-) diff --git a/src/commands/account/list.ts b/src/commands/account/list.ts index 0f61516..2596c68 100644 --- a/src/commands/account/list.ts +++ b/src/commands/account/list.ts @@ -5,8 +5,6 @@ import {WithoutPassphrase as Command} from '../../account-command' export default class AccountList extends Command { static description = 'List all existing accounts' - static aliases = ['account:ls'] - static flags = { ...Command.flags, ...cli.table.flags() diff --git a/src/commands/service/delete.ts b/src/commands/service/delete.ts index 6142b4e..9cae439 100644 --- a/src/commands/service/delete.ts +++ b/src/commands/service/delete.ts @@ -6,8 +6,6 @@ import Command from '../../root-command' export default class ServiceDelete extends Command { static description = 'Delete one or many services' - static aliases = ['service:rm', 'service:destroy'] - static flags = { ...Command.flags, confirm: flags.boolean({description: 'Confirm delete', default: false}) diff --git a/src/commands/service/doc.ts b/src/commands/service/doc.ts index 3b26bb7..bd94d8b 100644 --- a/src/commands/service/doc.ts +++ b/src/commands/service/doc.ts @@ -9,8 +9,6 @@ import Command from '../../root-command' export default class ServiceDoc extends Command { static description = 'Generate the documentation for the service in a README.md file' - static aliases = ['service:doc', 'service:docs'] - static flags = { ...Command.flags, save: flags.boolean({char: 's', description: 'Save to default readme file'}),