FYI, when running devtools::document(), the build fails with the following warning/error when rlist is not installed:
ℹ Updating frictionless documentation
ℹ Loading frictionless
Warning message:
[utils.R:36] @description refers to unavailable topic rlist::list.clean
Caused by error in `find.package()`:
! there is no package called ‘rlist’
Not sure if there's any way around this... is it possible to make this reference valid without installing rlist?
Alternatively, you might consider just using purrr::keep, purrr::discard, and purr:compact, I think they do basically the same thing and you're already requiring purrr.
In any case, it's very low priority because it's an internal function & only affect developers -- just wanted to give you the heads up.
FYI, when running
devtools::document(), the build fails with the following warning/error whenrlistis not installed:Not sure if there's any way around this... is it possible to make this reference valid without installing rlist?
Alternatively, you might consider just using
purrr::keep,purrr::discard, andpurr:compact, I think they do basically the same thing and you're already requiring purrr.In any case, it's very low priority because it's an internal function & only affect developers -- just wanted to give you the heads up.