feat: add i alias to install command

Adds an alias `i` to the `install` command, which
is common in a few other package managers.
This commit is contained in:
daimond113 2025-02-12 23:15:01 +01:00
parent 4786adf187
commit ae3530126f
No known key found for this signature in database
GPG key ID: 640DC95EC1190354

View file

@ -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