-
In the dependencies.R file there is a comment that states:
Questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @SaintRod and thanks for asking! Currently two features of Rhino use this file:
At the time when we devised this solution, I'd like us to find a better solution, but it's not as simple as getting rid of With that said, if you delete |
Beta Was this translation helpful? Give feedback.
Hi @SaintRod and thanks for asking!
Currently two features of Rhino use this file:
pkg_install()
andpkg_remove()
functions will recreate it, if it does not exist..renvignore
file so thatrenv
only reads dependencies only fromdependencies.R
(details).At the time when we devised this solution,
packrat
has been already deprecated for a while, but it was still being used byrsconnect
for dependency discovery (it only started usingrenv
by default in version 1.0.0).I'd like us to find a better solution, but it's not as simple as getting rid of
dependencies.R
and.renvignore
, as we do want to have a central location with a list of all project dependencies (we tried usingDES…