Trim installed packages
slushy_trim.Rd
This function will trim down the installed packages to only those that are used in the code files of the project. Unused packages will be removed from the DESCRIPTION file, uninstalled from the project library, and removed from the `renv.lock` file.
Usage
slushy_trim(project = NULL, config = get_config())
Examples
if (FALSE) { # \dontrun{
# default
slushy_trim()
# pass options
slushy_trim(config = get_config("slushy_config.yml"))
} # }