Reputation: 73589
I was creating a web-app in phoenix, It creates a folder of dependencies called deps
, I wanted to know If I can change code of one of the dependencies and see How it affects. I tried to do it, but it doesn't executes my injected code.
Upvotes: 3
Views: 298
Reputation: 23701
Did you recompile the dependencies?
From the command line of your directory, after you make the change, issue the command
mix deps.compile
This should cause your code changes to be included.
Upvotes: 2