From 8896cf1030c94622f09fbeabcb1b08b9b2248368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 21 Jan 2025 19:08:21 +0100 Subject: [PATCH] Update deps.loadpaths docs --- lib/mix/lib/mix/tasks/deps.loadpaths.ex | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/mix/lib/mix/tasks/deps.loadpaths.ex b/lib/mix/lib/mix/tasks/deps.loadpaths.ex index d7daa070738..a3f5ef10db5 100644 --- a/lib/mix/lib/mix/tasks/deps.loadpaths.ex +++ b/lib/mix/lib/mix/tasks/deps.loadpaths.ex @@ -4,10 +4,11 @@ defmodule Mix.Tasks.Deps.Loadpaths do import Mix.Dep, only: [format_dep: 1, format_status: 1, check_lock: 1] @moduledoc """ - Checks, compiles, and loads all dependencies along the way. + Checks, compiles, and loads dependencies. - If there is an invalid dependency, its status is printed - before aborting. + If a dependency has been fetched/updated and not yet compiled, + it will be automatically compiled. If a dependency is missing + or is invalid, its status is printed before aborting. Although this task does not show up in `mix help`, it is part of Mix public API and can be depended on.