I have project A, that is using package B. Now I want to make changes to B and run project A again.
I can open project A in VSCode, type using Revise; include("src/A.jl)
to execute my code and then type ]develop B
to make changes to B
.
Now the code of B
is checked out. But what would be the next step?
I can open the source code of B
with VSCode now, but then A
is not longer open. But for iterating fast I want to have both A
and B
open.
What is the best way to achieve that?
Perhaps I have to mention that include("src/A.jl")
launches a web server. I guess I still have to restart it to make changes to B
come into effect, or not?