From 624ed91ec5ee6e98f920b7b5fd05a93adf1c4aec Mon Sep 17 00:00:00 2001 From: Muhammad Hamza Date: Tue, 30 May 2023 18:30:44 +0500 Subject: [PATCH] alias no-pack with no-package --- src/command/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/build.rs b/src/command/build.rs index 096c51d..77a9eae 100644 --- a/src/command/build.rs +++ b/src/command/build.rs @@ -172,7 +172,7 @@ pub struct BuildOptions { /// Sets the output file names. Defaults to package name. pub out_name: Option, - #[structopt(long = "no-pack")] + #[structopt(long = "no-pack", alias = "no-package")] /// Option to not generate a package.json pub no_pack: bool,