This commit is contained in:
RiskyMH
2025-10-11 03:38:24 +11:00
parent fd1fc4a487
commit 87c329698f

View File

@@ -50,7 +50,7 @@ const shared_params = [_]ParamType{
clap.parseParam("--omit <dev|optional|peer>... Exclude 'dev', 'optional', or 'peer' dependencies from install") catch unreachable,
clap.parseParam("--lockfile-only Generate a lockfile without installing dependencies") catch unreachable,
clap.parseParam("--linker <STR> Linker strategy (one of \"isolated\" or \"hoisted\")") catch unreachable,
clap.parseParam("--minimum-release-age <STR> Only resolve package versions that are at least this old (e.g., 1440 for 1 day)") catch unreachable,
clap.parseParam("--minimum-release-age <NUM> Only resolve package versions that are at least this old (e.g., 1440 for 1 day)") catch unreachable,
clap.parseParam("--cpu <STR>... Override CPU architecture for optional dependencies (e.g., x64, arm64, * for all)") catch unreachable,
clap.parseParam("--os <STR>... Override operating system for optional dependencies (e.g., linux, darwin, * for all)") catch unreachable,
clap.parseParam("-h, --help Print this help menu") catch unreachable,