I'm currently learning Elixir by going through the OTP and mix tutorial on the elixir-lang website, and I'm having trouble finding out how to recompile and reload the project from within the shell.
In Erlang I would do make:all([load])
and it would compile and load any changes that occurred. However, in iex
that always says :up_to_date
, which does make sense, as Elixir uses mix for it's compiling needs.
I can't find any equivalent from within iex.
r/1
iniex
? Note that you can invoke a help iniex
by callingh()
. See around if some of that can help you. β Dreer/1
but that still isn't equivalent. I have to manually enter each module I have updated code for where asmake:all([load])
would auto-detect updated modules and recompile/reload them. β Bughouse