aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/src/commands/lists.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cli/src/commands/lists.ts')
-rw-r--r--apps/cli/src/commands/lists.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/cli/src/commands/lists.ts b/apps/cli/src/commands/lists.ts
index abf6f78c..c7b2a5f0 100644
--- a/apps/cli/src/commands/lists.ts
+++ b/apps/cli/src/commands/lists.ts
@@ -6,11 +6,11 @@ import { listsToTree } from "@hoarder/shared/utils/listUtils";
export const listsCmd = new Command()
.name("lists")
- .description("Manipulating lists");
+ .description("manipulating lists");
listsCmd
.command("list")
- .description("Lists all lists")
+ .description("lists all lists")
.action(async () => {
const api = getAPIClient();
@@ -31,8 +31,8 @@ listsCmd
listsCmd
.command("delete")
- .description("Deletes a list")
- .argument("<id>", "The id of the list")
+ .description("deletes a list")
+ .argument("<id>", "the id of the list")
.action(async (id) => {
const api = getAPIClient();
@@ -44,9 +44,9 @@ listsCmd
listsCmd
.command("add-bookmark")
- .description("Add a bookmark to list")
- .requiredOption("--list <id>", "The id of the list")
- .requiredOption("--bookmark <bookmark>", "The id of the bookmark")
+ .description("add a bookmark to list")
+ .requiredOption("--list <id>", "the id of the list")
+ .requiredOption("--bookmark <bookmark>", "the id of the bookmark")
.action(async (opts) => {
const api = getAPIClient();
@@ -59,9 +59,9 @@ listsCmd
listsCmd
.command("remove-bookmark")
- .description("Remove a bookmark from list")
- .requiredOption("--list <id>", "The id of the list")
- .requiredOption("--bookmark <bookmark>", "The id of the bookmark")
+ .description("remove a bookmark from list")
+ .requiredOption("--list <id>", "the id of the list")
+ .requiredOption("--bookmark <bookmark>", "the id of the bookmark")
.action(async (opts) => {
const api = getAPIClient();