You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
R-CMD-CHECK give a build note commenting on the large number of dependencies we have. It would be sensible to review this and reduce them where possible. We should take a systematic approach and where we are depending on a package but only using it in limited places we should try to re-write the code to not require it.
An obvious example would be to replace glue::glue(...) with stringr::str_glue(...) Since we use {stringr} for many other functions.
The text was updated successfully, but these errors were encountered:
R-CMD-CHECK give a build note commenting on the large number of dependencies we have. It would be sensible to review this and reduce them where possible. We should take a systematic approach and where we are depending on a package but only using it in limited places we should try to re-write the code to not require it.
An obvious example would be to replace
glue::glue(...)
withstringr::str_glue(...)
Since we use{stringr}
for many other functions.The text was updated successfully, but these errors were encountered: