Skip to content

Commit

Permalink
refactor(cli): remove single char command aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Nov 1, 2018
1 parent 7bec220 commit d562fe2
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion garden-service/src/commands/create/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/create/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ interface CreateModuleResult extends CommandResult {

export class CreateModuleCommand extends Command<Args, Opts> {
name = "module"
alias = "m"
help = "Creates a new Garden module."

description = dedent`
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/create/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ interface CreateProjectResult extends CommandResult {

export class CreateProjectCommand extends Command<Args, Opts> {
name = "project"
alias = "p"
help = "Creates a new Garden project."

description = dedent`
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ type Args = typeof runArgs

export class ExecCommand extends Command<Args> {
name = "exec"
alias = "e"
help = "Executes a command (such as an interactive shell) in a running service."

description = dedent`
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/run/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ type Opts = typeof runOpts

export class RunModuleCommand extends Command<Args, Opts> {
name = "module"
alias = "m"
help = "Run an ad-hoc instance of a module."

description = dedent`
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/run/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/run/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ type Opts = typeof runOpts

export class RunServiceCommand extends Command<Args, Opts> {
name = "service"
alias = "s"
help = "Run an ad-hoc instance of the specified service"

description = dedent`
Expand Down
1 change: 0 additions & 1 deletion garden-service/src/commands/run/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ type Opts = typeof runOpts

export class RunTestCommand extends Command<Args, Opts> {
name = "test"
alias = "t"
help = "Run the specified module test."

description = dedent`
Expand Down

0 comments on commit d562fe2

Please sign in to comment.