(Really) Remove Elixir Dependencies
Something that suprised me about Elixir's dependency management tooling: sometimes libraries removed from the manifest hang around in the lockfile. They are fetched and installed, and often never used.
The solution:
$ mix deps.unlock --unused
We've run this a few times on Today I Learned, and always found a stowaway library or two.
Tweet