Description Usage Arguments Details Value
Determine if one or more targets are "current" or not. A target is current if (1) it exists, (2) its immediate dependencies are unchanged since it was last built and (3) its code is unchanged since it was last built.
1 2 | is_current(target_names, check = NULL, verbose = FALSE,
allow_missing_packages = FALSE, remake_file = "remake.yml")
|
target_names |
Names of one or more targets to check |
check |
What to check. By default ( |
verbose |
Be verbose when loading remake file? Default is
|
allow_missing_packages |
Allow missing packages when loading remake file? |
remake_file |
Name of the remakefile (by default
|
Note that this function does not check all the way down the dependency tree; so if A depends on B and B depends on C, A may be current with respect to B but B may be out of date with respect to C. Therefore running make()] would trigger building B, which may imply rebuilding A.
A logical vector the same length as target_names
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.