I have a custom package MyPackage that depends on another custom package MyPackageDependency. I am using the sources section of the MyPackage Project.toml file to point to the MyPackageDependency GitHub repository.
However, if I want to test some changes to MyPackageDependency with MyPackage, then I need to rm MyPackageDependency from the MyPackage environment, dev it back in, and then change its “sources” line from a URL to a path in the Project.toml file.
Then when I’m happy with the MyPackageDependency changes, I need to remember to revert all the MyPackage environment and .toml changes before I commit and push MyPackage again.
Is there a better process or flag I can use to streamline this process?