This is one of the higher priority issues if you ask me! When you install the package with dependencies = TRUE, it should make install_All.R unnecessary. To achieve this, you should include all packages in the DESCRIPTION file either as an Import or a Suggestion. To this end, you can use usethis::use_package() & usethis::use_dev_package(). Whether or not you deprecate install_All.R at the end is up to you, but the package should function with or without using it.
This is one of the higher priority issues if you ask me! When you install the package with
dependencies = TRUE, it should makeinstall_All.Runnecessary. To achieve this, you should include all packages in theDESCRIPTIONfile either as an Import or a Suggestion. To this end, you can useusethis::use_package()&usethis::use_dev_package(). Whether or not you deprecateinstall_All.Rat the end is up to you, but the package should function with or without using it.