Everything I do before committing changes to an R package on GitHub. First restart R, then generates man pages, checks, installs, and builds package documentation website etc.
gogoawesomepkg( style = TRUE, check = TRUE, test = FALSE, install = TRUE, pkgdown = FALSE, verbose = TRUE, num_threads = parallel::detectCores() - 2L )
style | Style the source files found in the |
---|---|
check | Check the package using |
test | Run unit tests with |
install | Install the package ( |
pkgdown | Build package documentation website using |
verbose | Print status messages during the process or not. (Default: |
num_threads | The number of threads to be used if |
Invisibly returns a list with the output of all steps run.