devtools (version 1.8.0)

package_deps: Find all dependencies of a CRAN or dev package.

Description

Find all the dependencies of a package and determine whether they ahead or behind cran. A print() method focusses on mismatches between local and CRAN version; a update() method installs outdated or missing packages from CRAN.

Usage

package_deps(pkg, dependencies = NA, repos = getOption("repos"),
  type = getOption("pkgType"))

dev_package_deps(pkg = ".", dependencies = NA, repos = getOption("repos"), type = getOption("pkgType"))

## S3 method for class 'package_deps': update(object, ..., quiet = FALSE)

Arguments

pkg
A character vector of package names. If missing, defaults to the name of the package in the current directory.
dependencies
Which dependencies do you want to check? Can be a character vector (selecting from "Depends", "Imports", "LinkingTo", "Suggests", or "Enhances"), or a logical vector.

TRUE is shorthand for "Depends", "Imports", "LinkingTo" and "Sugg

repos
A character vector giving repositories to use.
type
Type of package to update. If "both", will switch automatically to "binary" to avoid interactive prompts during package installation.
object,...
Arguments ot
quiet
If TRUE, supress output

Value

  • A data frame with additional.

Examples

Run this code
package_deps("devtools")
# Use update to update any updated/
update(package_deps("devtools"))

Run the code above in your browser using DataCamp Workspace