Skip to content

Commit

Permalink
Rename list commands -> list tags (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbush authored May 20, 2022
1 parent f27fc00 commit c57a6a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/commandModules/list/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import { CommandModule } from "yargs";
import { ActionArgs, ListTagArgs, listTags, withJsonOption } from "../../..";

const commandModule: CommandModule<ActionArgs, ListTagArgs> = {
command: "commands",
command: "tags",
builder(args) {
return withJsonOption(args);
},
handler: async (args) => {
await listTags(args);
},
aliases: [],
describe: "list available commands",
describe: "list available tags",
};

export default commandModule;

0 comments on commit c57a6a4

Please sign in to comment.