You should also mix deps.update igniter in your projects. In addition, double check that you’ve truly updated your archive. If you are using something my like asdf, mix archives are installed per elixir version, meaning that your igniter_new version can change depending on your directory.
Failed to add igniter to mix.exs. Please add it manually and try again
For more information, see: https://hexdocs.pm/igniter/readme.html#installation
I saw your webcast with Peter Ullrich which prompted me to try Ash - I think the concept of completely separating the business layer is awesome - reminded me of Prag Dave’s philosophy expounded in his course.
Appreciate the huge efforts you’ve put in to implement all this and make it freely available to the community.
Hey folks, I’ve updated both the installer archive and igniter itself. Please update both (or just the installer if you don’t have a project using igniter yet) and try again.
This means updating the archive:
mix archive.install hex igniter_new
and the dep for any projects that have igniter in it
I have the same error on a custom mix task installed with mix archive.install. If the task calls other modules after I asked Mix to load a project or ran “app.config”, then the code of all modules from my mix task cannot be found.
I guess Mix completely redefines the loadable ebin paths. There is a workaround where I can just force load the modules of my task by calling .module_info() on them but it’s a hack.
It seems that you found a solution for this problem. Did you run into the same problem or was it something else? If yes, can you tell me how it is solved in Igniter when installed globally as an archive?