Skip to contents

Convenience wrapper around detect_project_packages() and check_packages().

Usage

check_project(
  path = ".",
  include_suggests = FALSE,
  platform = NULL,
  backend = c("auto", "bundled", "ppm", "pak"),
  ...
)

Arguments

path

Project path.

include_suggests

Whether to include Suggests from DESCRIPTION.

platform

Platform specification accepted by resolve_platform().

backend

One of "auto", "ppm", or "pak".

...

Passed to check_packages().

Value

A sysreqr_plan.

Examples

if (FALSE) { # \dontrun{
check_project(".")
check_project(".", platform = "ubuntu-22.04", backend = "ppm")
} # }