I'm developing a library for Phoenix. I have created a Phoenix project with mix.exs:
defp deps do
[{:phoenix, "~> 1.2.1"},
...
{:my_package, path: "../my_package"}]
end
and I want Phoenix to automatically recompile that dependency when I change it, without restarting a Phoenix server. Is it possible? I have already tried installing remix to both Phoenix and my_package and adding ~r{../my_package/lib/.*(ex)$}
in live_reload
Phoenix config, but nothing works.