write_pkg_setup_fls() is a Write function that writes a file to a specified local directory. Specifically, this function implements an algorithm to write package setup files. The function is called for its side effects and does not return a value. WARNING: This function writes R scripts to your local environment. Make sure to only use if you want this behaviour
1 2 3 4 5 6 7 8 9 10 11 | write_pkg_setup_fls(
path_to_pkg_rt_1L_chr = getwd(),
dev_pkg_nm_1L_chr = get_dev_pkg_nm(getwd()),
incr_ver_1L_lgl = T,
delete_contents_of_R_dir = F,
copyright_holders_chr,
use_travis_1L_lgl = T,
path_to_pkg_logo_1L_chr = NA_character_,
github_repo_1L_chr,
lifecycle_stage_1L_chr = "experimental"
)
|
path_to_pkg_rt_1L_chr |
Path to package root (a character vector of length one), Default: getwd() |
dev_pkg_nm_1L_chr |
Development package name (a character vector of length one), Default: get_dev_pkg_nm(getwd()) |
incr_ver_1L_lgl |
Incr ver (a logical vector of length one), Default: T |
delete_contents_of_R_dir |
PARAM_DESCRIPTION, Default: F |
copyright_holders_chr |
Copyright holders (a character vector) |
use_travis_1L_lgl |
Use travis (a logical vector of length one), Default: T |
path_to_pkg_logo_1L_chr |
Path to package logo (a character vector of length one), Default: 'NA' |
github_repo_1L_chr |
Github repo (a character vector of length one) |
lifecycle_stage_1L_chr |
Lifecycle stage (a character vector of length one), Default: 'experimental' |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.