get_package_makelist {packager} | R Documentation |
Provide a makelist
Suitable for Packages with packager
Description
Provide a makelist
Suitable for Packages with packager
Usage
get_package_makelist(is_cran = FALSE, gitlab_token = NULL)
Arguments
is_cran |
Streamline |
gitlab_token |
A private gitlab token. Used to query logs on https://about.gitlab.com. |
Value
A list for
fakemake::make
.
Examples
ml <- packager::get_package_makelist()
cbind(lapply(ml, function(x) x[["target"]]),
lapply(ml, function(x) x[["alias"]]))
cl <- packager::get_package_makelist(is_cran = TRUE)
setdiff(sapply(ml, function(x) x[["target"]]),
sapply(cl, function(x) x[["target"]]))
[Package packager version 1.15.2 Index]