rush install

Install package dependencies for all projects in the repo according to the shrinkwrap file

Options

NameDescription
-p, --purgePerform "rush purge" before starting the installation
--bypass-policyOverrides enforcement of the "gitPolicy" rules from rush.json (use honorably!)
--no-linkIf "--no-link" is specified, then project symlinks will NOT be created after the installation completes. You will need to run "rush link" manually. This flag is useful for automated builds that want to report stages individually or perform extra operations in between the two stages. This flag is not supported when using workspaces
--network-concurrency <COUNT>If specified, limits the maximum number of concurrent network requests. This is useful when troubleshooting network failures
--debug-package-managerActivates verbose logging for the package manager. You will probably want to pipe the output of Rush to a file when using this command
--max-install-attempts <NUMBER>Overrides the default maximum number of install attempts. The default value is 3
--ignore-hooksSkips execution of the "eventHooks" scripts defined in rush.json. Make sure you know what you are skipping
--variant <VARIANT>Run command using a variant installation configuration. This parameter may alternatively be specified via the RUSH_VARIANT environment variable
-t, --to <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--to" parameter expands this selection to include PROJECT and all its dependencies. "." can be used as shorthand for the project in the current working directory. For details, refer to the website article "Selecting subsets of projects"
-T, --to-except <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--to-except" parameter expands this selection to include all dependencies of PROJECT, but not PROJECT itself. "." can be used as shorthand for the project in the current working directory. For details, refer to the website article "Selecting subsets of projects"
-f, --from <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--from" parameter expands this selection to include PROJECT and all projects that depend on it, plus all dependencies of this set. "." can be used as shorthand for the project in the current working directory. For details, refer to the website article "Selecting subsets of projects"
-o, --only <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--only" parameter expands this selection to include PROJECT; its dependencies are not added. "." can be used as shorthand for the project in the current working directory. Note that this parameter is "unsafe" as it may produce a selection that excludes some dependencies. For details, refer to the website article "Selecting subsets of projects"
-i, --impacted-by <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--impacted-by" parameter expands this selection to include PROJECT and any projects that depend on PROJECT (and thus might be broken by changes to PROJECT). "." can be used as shorthand for the project in the current working directory. Note that this parameter is "unsafe" as it may produce a selection that excludes some dependencies. For details, refer to the website article "Selecting subsets of projects"
-I, --impacted-by-except <PROJECT>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. Each "--impacted-by-except" parameter works the same as "--impacted-by" except that PROJECT itself is not added to the selection. "." can be used as shorthand for the project in the current working directory. Note that this parameter is "unsafe" as it may produce a selection that excludes some dependencies. For details, refer to the website article "Selecting subsets of projects"
--to-version-policy <VERSION_POLICY_NAME>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. The "--to-version-policy" parameter is equivalent to specifying "--to" for each of the projects belonging to VERSION_POLICY_NAME. For details, refer to the website article "Selecting subsets of projects"
--from-version-policy <VERSION_POLICY_NAME>Normally all projects in the monorepo will be processed; adding this parameter will instead select a subset of projects. The "--from-version-policy" parameter is equivalent to specifying "--from" for each of the projects belonging to VERSION_POLICY_NAME. For details, refer to the website article "Selecting subsets of projects"
--check-onlyOnly check the validity of the shrinkwrap file without performing an install