We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ebc1da commit 146b660Copy full SHA for 146b660
lib/ex_doc/cli.ex
@@ -76,6 +76,13 @@ defmodule ExDoc.CLI do
76
for path <- Keyword.get_values(opts, :paths),
77
path <- Path.wildcard(path) do
78
Code.prepend_path(path)
79
+ app(path) |> Application.load()
80
+ end
81
+
82
+ # Start all applications with the makeup prefix
83
+ for {app, _, _} <- Application.loaded_applications(),
84
+ match?("makeup_" <> _, Atom.to_string(app)) do
85
+ Application.ensure_all_started(app)
86
end
87
88
opts =
0 commit comments