You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After cleaning everything under _build, and running mix dialyzer --plt --force-check from the umbrella root directory, some umbrella child applications are not added to the generated PLT.
The umbrella child applications that are added automatically to the PLT are those that are dependencies of other child applications, and those that are explicitly included in the mix.exs file of the umbrella project, like this
def project do
[
...
dialyzer: [plt_add_apps: [...]]
]
end
Expected behavior
All umbrella child applications should be added automatically to the PLT.
The text was updated successfully, but these errors were encountered:
Environment
Current behavior
After cleaning everything under
_build
, and runningmix dialyzer --plt --force-check
from the umbrella root directory, some umbrella child applications are not added to the generated PLT.The umbrella child applications that are added automatically to the PLT are those that are dependencies of other child applications, and those that are explicitly included in the
mix.exs
file of the umbrella project, like thisExpected behavior
All umbrella child applications should be added automatically to the PLT.
The text was updated successfully, but these errors were encountered: