-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I include my deps in the plt? #16
Comments
The plugin relies on OTP application information to discover deps. This means a dep must be in the I would be happy to accept a PR that added the ability to add extra applications to the PLT via the mix.exs |
Hmm, that would explain the mix error, but I'm also seeing errors about plug, which is in our applications list. Any idea why that wouldn't get picked up? |
The latest tag only uses applications of the project in the PLT so if you have phoenix listed in top level mix.exs but not plug (listed in phoenix's mix.exs) there will be warnings. If plug is listed in the top level mix.exs I have no idea why it wouldnt get picked up. I believe the previous tag to last will pick up applications recursively, which is better behaviour but can cause memory issues for some people. |
I'm getting a bunch of errors like
Callback info about the 'Elixir.Mix.Task' behaviour is not available
. Is there a flag to include my deps when building the ptl?The text was updated successfully, but these errors were encountered: