R/lockfile.R

Defines functions get_lockfile

#nocov start
get_lockfile <- function(...) {
  if (packageVersion("renv") >= "1.0.0") {
    renv::lockfile_read(...)
  } else {
    asNamespace("renv")$lockfile(...)$data()
  }
}
#nocov enc
zkamvar/vise documentation built on Oct. 27, 2023, 9:18 a.m.