diff --git a/garden-service/src/commands/create/create.ts b/garden-service/src/commands/create/create.ts index f79de0465a..e64195af59 100644 --- a/garden-service/src/commands/create/create.ts +++ b/garden-service/src/commands/create/create.ts @@ -12,7 +12,6 @@ import { CreateModuleCommand } from "./module" export class CreateCommand extends Command { name = "create" - alias = "r" help = "Create a new project or add a new module" subCommands = [ diff --git a/garden-service/src/commands/create/module.ts b/garden-service/src/commands/create/module.ts index 8e3246b7ae..8183ffedfc 100644 --- a/garden-service/src/commands/create/module.ts +++ b/garden-service/src/commands/create/module.ts @@ -53,7 +53,6 @@ interface CreateModuleResult extends CommandResult { export class CreateModuleCommand extends Command { name = "module" - alias = "m" help = "Creates a new Garden module." description = dedent` diff --git a/garden-service/src/commands/create/project.ts b/garden-service/src/commands/create/project.ts index 8a51471452..5d86a1459a 100644 --- a/garden-service/src/commands/create/project.ts +++ b/garden-service/src/commands/create/project.ts @@ -64,7 +64,6 @@ interface CreateProjectResult extends CommandResult { export class CreateProjectCommand extends Command { name = "project" - alias = "p" help = "Creates a new Garden project." description = dedent` diff --git a/garden-service/src/commands/exec.ts b/garden-service/src/commands/exec.ts index 801be5e119..833940371b 100644 --- a/garden-service/src/commands/exec.ts +++ b/garden-service/src/commands/exec.ts @@ -40,7 +40,6 @@ type Args = typeof runArgs export class ExecCommand extends Command { name = "exec" - alias = "e" help = "Executes a command (such as an interactive shell) in a running service." description = dedent` diff --git a/garden-service/src/commands/run/module.ts b/garden-service/src/commands/run/module.ts index ddb761d501..0551ad4b9c 100644 --- a/garden-service/src/commands/run/module.ts +++ b/garden-service/src/commands/run/module.ts @@ -51,7 +51,6 @@ type Opts = typeof runOpts export class RunModuleCommand extends Command { name = "module" - alias = "m" help = "Run an ad-hoc instance of a module." description = dedent` diff --git a/garden-service/src/commands/run/run.ts b/garden-service/src/commands/run/run.ts index 506b474c7d..455b89a85c 100644 --- a/garden-service/src/commands/run/run.ts +++ b/garden-service/src/commands/run/run.ts @@ -17,7 +17,6 @@ import { Garden } from "../../garden" export class RunCommand extends Command { name = "run" - alias = "r" help = "Run ad-hoc instances of your modules, services and tests" subCommands = [ diff --git a/garden-service/src/commands/run/service.ts b/garden-service/src/commands/run/service.ts index 8612752a14..f2b097be7d 100644 --- a/garden-service/src/commands/run/service.ts +++ b/garden-service/src/commands/run/service.ts @@ -36,7 +36,6 @@ type Opts = typeof runOpts export class RunServiceCommand extends Command { name = "service" - alias = "s" help = "Run an ad-hoc instance of the specified service" description = dedent` diff --git a/garden-service/src/commands/run/test.ts b/garden-service/src/commands/run/test.ts index c2506c7703..31a31fea96 100644 --- a/garden-service/src/commands/run/test.ts +++ b/garden-service/src/commands/run/test.ts @@ -49,7 +49,6 @@ type Opts = typeof runOpts export class RunTestCommand extends Command { name = "test" - alias = "t" help = "Run the specified module test." description = dedent`