I have a local MyPackage project, with a docs subdirectory. Both were initially created by PkgTemplates.jl.
Before Pkg.adding dependencies to MyPackage, I tested the docs build process with Documenter.jl in Powershell with > cd docs then > julia make.jl. I’ve browsed the pages and they work.
After Pkg.adding dependencies, I try building the documentation again, and I get the error:
ERROR: LoadError: ArgumentError: Package MyPackage does not have Reexport in its dependencies:
- You may have a partially installed environment. Try `Pkg.instantiate()`
to ensure all packages in the environment are installed.
- Or, if you have MyPackage checked out for development and have
added Reexport as a dependency but haven't updated your primary
environment's manifest file, try `Pkg.resolve()`.
- Otherwise you may need to report an issue with MyPackage
I’ve followed all the steps this error message suggested. I’ve deleted the manifest files involved. I’ve checked MyPackage in and out of dev. How do I fix this issue?