mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
cleanup some dependency-group docs (#11284)
Some additional details, more mentioning of related flags, and some minor rewordings to avoid misconceptions I had from the current docs. Closes #11205
This commit is contained in:
parent
092e78d9d2
commit
5c4b6d436c
3 changed files with 105 additions and 76 deletions
|
@ -2697,9 +2697,10 @@ pub struct RunArgs {
|
|||
#[arg(long, overrides_with("no_dev"), hide = true)]
|
||||
pub dev: bool,
|
||||
|
||||
/// Omit the development dependency group.
|
||||
/// Disable the development dependency group.
|
||||
///
|
||||
/// This option is an alias of `--no-group dev`.
|
||||
/// See `--no-default-groups` to disable all default groups instead.
|
||||
///
|
||||
/// This option is only available when running in a project.
|
||||
#[arg(long, overrides_with("dev"))]
|
||||
|
@ -2711,23 +2712,27 @@ pub struct RunArgs {
|
|||
#[arg(long, conflicts_with_all = ["only_group", "only_dev"])]
|
||||
pub group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from the specified dependency group.
|
||||
/// Disable the specified dependency group.
|
||||
///
|
||||
/// This options always takes precedence over default groups,
|
||||
/// `--all-groups`, and `--group`.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
#[arg(long)]
|
||||
pub no_group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from default groups.
|
||||
/// Ignore the the default dependency groups.
|
||||
///
|
||||
/// `--group` can be used to include specific groups.
|
||||
/// uv includes the groups defined in `tool.uv.default-groups` by default.
|
||||
/// This disables that option, however, specific groups can still be included with `--group`.
|
||||
#[arg(long)]
|
||||
pub no_default_groups: bool,
|
||||
|
||||
/// Only include dependencies from the specified dependency group.
|
||||
///
|
||||
/// The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
/// May be provided multiple times. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "dev", "all_groups"])]
|
||||
pub only_group: Vec<GroupName>,
|
||||
|
||||
|
@ -2745,9 +2750,9 @@ pub struct RunArgs {
|
|||
|
||||
/// Only include the development dependency group.
|
||||
///
|
||||
/// Omit other dependencies. The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// This option is an alias for `--only-group dev`.
|
||||
/// This option is an alias for `--only-group dev`. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "all_groups", "no_dev"])]
|
||||
pub only_dev: bool,
|
||||
|
||||
|
@ -2969,17 +2974,18 @@ pub struct SyncArgs {
|
|||
#[arg(long, overrides_with("no_dev"), hide = true)]
|
||||
pub dev: bool,
|
||||
|
||||
/// Omit the development dependency group.
|
||||
/// Disable the development dependency group.
|
||||
///
|
||||
/// This option is an alias for `--no-group dev`.
|
||||
/// This option is an alias of `--no-group dev`.
|
||||
/// See `--no-default-groups` to disable all default groups instead.
|
||||
#[arg(long, overrides_with("dev"))]
|
||||
pub no_dev: bool,
|
||||
|
||||
/// Only include the development dependency group.
|
||||
///
|
||||
/// Omit other dependencies. The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// This option is an alias for `--only-group dev`.
|
||||
/// This option is an alias for `--only-group dev`. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "all_groups", "no_dev"])]
|
||||
pub only_dev: bool,
|
||||
|
||||
|
@ -2992,23 +2998,27 @@ pub struct SyncArgs {
|
|||
#[arg(long, conflicts_with_all = ["only_group", "only_dev"])]
|
||||
pub group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from the specified dependency group.
|
||||
/// Disable the specified dependency group.
|
||||
///
|
||||
/// This options always takes precedence over default groups,
|
||||
/// `--all-groups`, and `--group`.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
#[arg(long)]
|
||||
pub no_group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from default groups.
|
||||
/// Ignore the the default dependency groups.
|
||||
///
|
||||
/// `--group` can be used to include specific groups.
|
||||
/// uv includes the groups defined in `tool.uv.default-groups` by default.
|
||||
/// This disables that option, however, specific groups can still be included with `--group`.
|
||||
#[arg(long)]
|
||||
pub no_default_groups: bool,
|
||||
|
||||
/// Only include dependencies from the specified dependency group.
|
||||
///
|
||||
/// The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
/// May be provided multiple times. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "dev", "all_groups"])]
|
||||
pub only_group: Vec<GroupName>,
|
||||
|
||||
|
@ -3462,15 +3472,16 @@ pub struct TreeArgs {
|
|||
|
||||
/// Only include the development dependency group.
|
||||
///
|
||||
/// Omit other dependencies. The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// This option is an alias for `--only-group dev`.
|
||||
/// This option is an alias for `--only-group dev`. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "all_groups", "no_dev"])]
|
||||
pub only_dev: bool,
|
||||
|
||||
/// Omit the development dependency group.
|
||||
/// Disable the development dependency group.
|
||||
///
|
||||
/// This option is an alias for `--no-group dev`.
|
||||
/// This option is an alias of `--no-group dev`.
|
||||
/// See `--no-default-groups` to disable all default groups instead.
|
||||
#[arg(long, overrides_with("dev"))]
|
||||
pub no_dev: bool,
|
||||
|
||||
|
@ -3480,23 +3491,27 @@ pub struct TreeArgs {
|
|||
#[arg(long, conflicts_with_all = ["only_group", "only_dev"])]
|
||||
pub group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from the specified dependency group.
|
||||
/// Disable the specified dependency group.
|
||||
///
|
||||
/// This options always takes precedence over default groups,
|
||||
/// `--all-groups`, and `--group`.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
#[arg(long)]
|
||||
pub no_group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from default groups.
|
||||
/// Ignore the the default dependency groups.
|
||||
///
|
||||
/// `--group` can be used to include specific groups.
|
||||
/// uv includes the groups defined in `tool.uv.default-groups` by default.
|
||||
/// This disables that option, however, specific groups can still be included with `--group`.
|
||||
#[arg(long)]
|
||||
pub no_default_groups: bool,
|
||||
|
||||
/// Only include dependencies from the specified dependency group.
|
||||
///
|
||||
/// The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
/// May be provided multiple times. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "dev", "all_groups"])]
|
||||
pub only_group: Vec<GroupName>,
|
||||
|
||||
|
@ -3628,17 +3643,18 @@ pub struct ExportArgs {
|
|||
#[arg(long, overrides_with("no_dev"), hide = true)]
|
||||
pub dev: bool,
|
||||
|
||||
/// Omit the development dependency group.
|
||||
/// Disable the development dependency group.
|
||||
///
|
||||
/// This option is an alias for `--no-group dev`.
|
||||
/// This option is an alias of `--no-group dev`.
|
||||
/// See `--no-default-groups` to disable all default groups instead.
|
||||
#[arg(long, overrides_with("dev"))]
|
||||
pub no_dev: bool,
|
||||
|
||||
/// Only include the development dependency group.
|
||||
///
|
||||
/// Omit other dependencies. The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// This option is an alias for `--only-group dev`.
|
||||
/// This option is an alias for `--only-group dev`. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "all_groups", "no_dev"])]
|
||||
pub only_dev: bool,
|
||||
|
||||
|
@ -3648,23 +3664,27 @@ pub struct ExportArgs {
|
|||
#[arg(long, conflicts_with_all = ["only_group", "only_dev"])]
|
||||
pub group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from the specified dependency group.
|
||||
/// Disable the specified dependency group.
|
||||
///
|
||||
/// This options always takes precedence over default groups,
|
||||
/// `--all-groups`, and `--group`.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
#[arg(long)]
|
||||
pub no_group: Vec<GroupName>,
|
||||
|
||||
/// Exclude dependencies from default groups.
|
||||
/// Ignore the the default dependency groups.
|
||||
///
|
||||
/// `--group` can be used to include specific groups.
|
||||
/// uv includes the groups defined in `tool.uv.default-groups` by default.
|
||||
/// This disables that option, however, specific groups can still be included with `--group`.
|
||||
#[arg(long)]
|
||||
pub no_default_groups: bool,
|
||||
|
||||
/// Only include dependencies from the specified dependency group.
|
||||
///
|
||||
/// The project itself will also be omitted.
|
||||
/// The project and its dependencies will be omitted.
|
||||
///
|
||||
/// May be provided multiple times.
|
||||
/// May be provided multiple times. Implies `--no-default-groups`.
|
||||
#[arg(long, conflicts_with_all = ["group", "dev", "all_groups"])]
|
||||
pub only_group: Vec<GroupName>,
|
||||
|
||||
|
|
|
@ -608,8 +608,8 @@ dev = [
|
|||
```
|
||||
|
||||
The `dev` group is special-cased; there are `--dev`, `--only-dev`, and `--no-dev` flags to toggle
|
||||
inclusion or exclusion of its dependencies. Additionally, the `dev` group is
|
||||
[synced by default](#default-groups).
|
||||
inclusion or exclusion of its dependencies. See `--no-default-groups` to disable all default groups
|
||||
instead. Additionally, the `dev` group is [synced by default](#default-groups).
|
||||
|
||||
### Dependency groups
|
||||
|
||||
|
@ -633,8 +633,8 @@ lint = [
|
|||
]
|
||||
```
|
||||
|
||||
Once groups are defined, the `--group`, `--only-group`, and `--no-group` options can be used to
|
||||
include or exclude their dependencies.
|
||||
Once groups are defined, the `--all-groups`, `--no-default-groups`, `--group`, `--only-group`, and
|
||||
`--no-group` options can be used to include or exclude their dependencies.
|
||||
|
||||
!!! tip
|
||||
|
||||
|
@ -664,7 +664,8 @@ default-groups = ["dev", "foo"]
|
|||
|
||||
!!! tip
|
||||
|
||||
To exclude a default group during `uv run` or `uv sync`, use `--no-group <name>`.
|
||||
To disable this behaviour during `uv run` or `uv sync`, use `--no-default-groups`.
|
||||
To exclude a specific default group, use `--no-group <name>`.
|
||||
|
||||
### Legacy `dev-dependencies`
|
||||
|
||||
|
|
|
@ -324,13 +324,13 @@ uv run [OPTIONS] [COMMAND]
|
|||
<p>Normally, configuration files are discovered in the current directory, parent directories, or user configuration directories.</p>
|
||||
|
||||
<p>May also be set with the <code>UV_NO_CONFIG</code> environment variable.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Exclude dependencies from default groups.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Ignore the the default dependency groups.</p>
|
||||
|
||||
<p><code>--group</code> can be used to include specific groups.</p>
|
||||
<p>uv includes the groups defined in <code>tool.uv.default-groups</code> by default. This disables that option, however, specific groups can still be included with <code>--group</code>.</p>
|
||||
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Omit the development dependency group.</p>
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Disable the development dependency group.</p>
|
||||
|
||||
<p>This option is an alias of <code>--no-group dev</code>.</p>
|
||||
<p>This option is an alias of <code>--no-group dev</code>. See <code>--no-default-groups</code> to disable all default groups instead.</p>
|
||||
|
||||
<p>This option is only available when running in a project.</p>
|
||||
|
||||
|
@ -343,7 +343,9 @@ uv run [OPTIONS] [COMMAND]
|
|||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Exclude dependencies from the specified dependency group.</p>
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Disable the specified dependency group.</p>
|
||||
|
||||
<p>This options always takes precedence over default groups, <code>--all-groups</code>, and <code>--group</code>.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
|
@ -376,15 +378,15 @@ uv run [OPTIONS] [COMMAND]
|
|||
<p>May also be set with the <code>UV_OFFLINE</code> environment variable.</p>
|
||||
</dd><dt><code>--only-dev</code></dt><dd><p>Only include the development dependency group.</p>
|
||||
|
||||
<p>Omit other dependencies. The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>This option is an alias for <code>--only-group dev</code>.</p>
|
||||
<p>This option is an alias for <code>--only-group dev</code>. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--only-group</code> <i>only-group</i></dt><dd><p>Only include dependencies from the specified dependency group.</p>
|
||||
|
||||
<p>The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
<p>May be provided multiple times. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--package</code> <i>package</i></dt><dd><p>Run the command in a specific package in the workspace.</p>
|
||||
|
||||
|
@ -1715,13 +1717,13 @@ uv sync [OPTIONS]
|
|||
<p>Normally, configuration files are discovered in the current directory, parent directories, or user configuration directories.</p>
|
||||
|
||||
<p>May also be set with the <code>UV_NO_CONFIG</code> environment variable.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Exclude dependencies from default groups.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Ignore the the default dependency groups.</p>
|
||||
|
||||
<p><code>--group</code> can be used to include specific groups.</p>
|
||||
<p>uv includes the groups defined in <code>tool.uv.default-groups</code> by default. This disables that option, however, specific groups can still be included with <code>--group</code>.</p>
|
||||
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Omit the development dependency group.</p>
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Disable the development dependency group.</p>
|
||||
|
||||
<p>This option is an alias for <code>--no-group dev</code>.</p>
|
||||
<p>This option is an alias of <code>--no-group dev</code>. See <code>--no-default-groups</code> to disable all default groups instead.</p>
|
||||
|
||||
</dd><dt><code>--no-editable</code></dt><dd><p>Install any editable dependencies, including the project and any workspace members, as non-editable</p>
|
||||
|
||||
|
@ -1729,7 +1731,9 @@ uv sync [OPTIONS]
|
|||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Exclude dependencies from the specified dependency group.</p>
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Disable the specified dependency group.</p>
|
||||
|
||||
<p>This options always takes precedence over default groups, <code>--all-groups</code>, and <code>--group</code>.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
|
@ -1763,15 +1767,15 @@ uv sync [OPTIONS]
|
|||
<p>May also be set with the <code>UV_OFFLINE</code> environment variable.</p>
|
||||
</dd><dt><code>--only-dev</code></dt><dd><p>Only include the development dependency group.</p>
|
||||
|
||||
<p>Omit other dependencies. The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>This option is an alias for <code>--only-group dev</code>.</p>
|
||||
<p>This option is an alias for <code>--only-group dev</code>. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--only-group</code> <i>only-group</i></dt><dd><p>Only include dependencies from the specified dependency group.</p>
|
||||
|
||||
<p>The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
<p>May be provided multiple times. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--package</code> <i>package</i></dt><dd><p>Sync for a specific package in the workspace.</p>
|
||||
|
||||
|
@ -2425,13 +2429,13 @@ uv export [OPTIONS]
|
|||
<p>Normally, configuration files are discovered in the current directory, parent directories, or user configuration directories.</p>
|
||||
|
||||
<p>May also be set with the <code>UV_NO_CONFIG</code> environment variable.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Exclude dependencies from default groups.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Ignore the the default dependency groups.</p>
|
||||
|
||||
<p><code>--group</code> can be used to include specific groups.</p>
|
||||
<p>uv includes the groups defined in <code>tool.uv.default-groups</code> by default. This disables that option, however, specific groups can still be included with <code>--group</code>.</p>
|
||||
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Omit the development dependency group.</p>
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Disable the development dependency group.</p>
|
||||
|
||||
<p>This option is an alias for <code>--no-group dev</code>.</p>
|
||||
<p>This option is an alias of <code>--no-group dev</code>. See <code>--no-default-groups</code> to disable all default groups instead.</p>
|
||||
|
||||
</dd><dt><code>--no-editable</code></dt><dd><p>Install any editable dependencies, including the project and any workspace members, as non-editable</p>
|
||||
|
||||
|
@ -2451,7 +2455,9 @@ uv export [OPTIONS]
|
|||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Exclude dependencies from the specified dependency group.</p>
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Disable the specified dependency group.</p>
|
||||
|
||||
<p>This options always takes precedence over default groups, <code>--all-groups</code>, and <code>--group</code>.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
|
@ -2477,15 +2483,15 @@ uv export [OPTIONS]
|
|||
<p>May also be set with the <code>UV_OFFLINE</code> environment variable.</p>
|
||||
</dd><dt><code>--only-dev</code></dt><dd><p>Only include the development dependency group.</p>
|
||||
|
||||
<p>Omit other dependencies. The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>This option is an alias for <code>--only-group dev</code>.</p>
|
||||
<p>This option is an alias for <code>--only-group dev</code>. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--only-group</code> <i>only-group</i></dt><dd><p>Only include dependencies from the specified dependency group.</p>
|
||||
|
||||
<p>The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
<p>May be provided multiple times. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--output-file</code>, <code>-o</code> <i>output-file</i></dt><dd><p>Write the exported requirements to the given file</p>
|
||||
|
||||
|
@ -2803,15 +2809,17 @@ uv tree [OPTIONS]
|
|||
<p>May also be set with the <code>UV_NO_CONFIG</code> environment variable.</p>
|
||||
</dd><dt><code>--no-dedupe</code></dt><dd><p>Do not de-duplicate repeated dependencies. Usually, when a package has already displayed its dependencies, further occurrences will not re-display its dependencies, and will include a (*) to indicate it has already been shown. This flag will cause those duplicates to be repeated</p>
|
||||
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Exclude dependencies from default groups.</p>
|
||||
</dd><dt><code>--no-default-groups</code></dt><dd><p>Ignore the the default dependency groups.</p>
|
||||
|
||||
<p><code>--group</code> can be used to include specific groups.</p>
|
||||
<p>uv includes the groups defined in <code>tool.uv.default-groups</code> by default. This disables that option, however, specific groups can still be included with <code>--group</code>.</p>
|
||||
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Omit the development dependency group.</p>
|
||||
</dd><dt><code>--no-dev</code></dt><dd><p>Disable the development dependency group.</p>
|
||||
|
||||
<p>This option is an alias for <code>--no-group dev</code>.</p>
|
||||
<p>This option is an alias of <code>--no-group dev</code>. See <code>--no-default-groups</code> to disable all default groups instead.</p>
|
||||
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Exclude dependencies from the specified dependency group.</p>
|
||||
</dd><dt><code>--no-group</code> <i>no-group</i></dt><dd><p>Disable the specified dependency group.</p>
|
||||
|
||||
<p>This options always takes precedence over default groups, <code>--all-groups</code>, and <code>--group</code>.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
|
||||
|
@ -2833,15 +2841,15 @@ uv tree [OPTIONS]
|
|||
<p>May also be set with the <code>UV_OFFLINE</code> environment variable.</p>
|
||||
</dd><dt><code>--only-dev</code></dt><dd><p>Only include the development dependency group.</p>
|
||||
|
||||
<p>Omit other dependencies. The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>This option is an alias for <code>--only-group dev</code>.</p>
|
||||
<p>This option is an alias for <code>--only-group dev</code>. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--only-group</code> <i>only-group</i></dt><dd><p>Only include dependencies from the specified dependency group.</p>
|
||||
|
||||
<p>The project itself will also be omitted.</p>
|
||||
<p>The project and its dependencies will be omitted.</p>
|
||||
|
||||
<p>May be provided multiple times.</p>
|
||||
<p>May be provided multiple times. Implies <code>--no-default-groups</code>.</p>
|
||||
|
||||
</dd><dt><code>--outdated</code></dt><dd><p>Show the latest available version of each package in the tree</p>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue