aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/src/commands/lists.ts
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-04-24 12:36:04 +0100
committerMohamedBassem <me@mbassem.com>2024-04-24 12:40:29 +0100
commitac2f78f6360bd94922ab95c47dfc8bae49e42804 (patch)
treeff42a091e2dd6ba61d0ac0fd37c4b7fbb81e0e94 /apps/cli/src/commands/lists.ts
parent3352a3ea393849550573deff8d774ba6bf149471 (diff)
downloadkarakeep-ac2f78f6360bd94922ab95c47dfc8bae49e42804.tar.zst
style(cli): Change all help messages to lowercase
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();