From ae3530126f69e295ff7d20bdd45ed2225b73b0e9 Mon Sep 17 00:00:00 2001 From: daimond113 Date: Wed, 12 Feb 2025 23:15:01 +0100 Subject: [PATCH] feat: add `i` alias to `install` command Adds an alias `i` to the `install` command, which is common in a few other package managers. --- src/cli/commands/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/commands/mod.rs b/src/cli/commands/mod.rs index a104e75..9da2a5c 100644 --- a/src/cli/commands/mod.rs +++ b/src/cli/commands/mod.rs @@ -47,6 +47,7 @@ pub enum Subcommand { Remove(remove::RemoveCommand), /// Installs all dependencies for the project + #[clap(name = "install", visible_alias = "i")] Install(install::InstallCommand), /// Updates the project's lockfile. Run install to apply changes