Use R as a minimal build system. This might come in handy if you are developing R packages and can not use a proper build system. Stay away if you can (use a proper build system).
Please read the
vignette.
Or, after installation, the help page:
help("fakemake-package", package = "fakemake")
#> Mock the Unix Make Utility
#>
#> Description:
#>
#> Use R as a minimal build system. This might come in handy if you
#> are developing R packages and can not use a proper build system.
#> Stay away if you can (use a proper build system).
#>
#> Details:
#>
#> You will find the details in
#> 'vignette("An_Introduction_to_fakemake", package = "fakemake")'.
You can install fakemake from github with:
if (! require("remotes")) install.packages("remotes")remotes::install_gitlab("fvafrCU/fakemake")
verbose
to function make
.package\_makelist
to using devtools::test
instead
testthat::test_package
directly (the former is a wrapper to the latter).package\_makelist
is printing output from roxygen2, testthat, cleanr and
devtools::build to harmonize logs.NEWS.md
file to track changes to the package.