run_build_toolsR Documentation

Run the top-level tool build workflow

Description

Orchestrates the source-level tooling workflow by optionally running the tool test suite and regenerating tool documentation.

Usage

run_build_tools(args = commandArgs(trailingOnly = TRUE))

Arguments

args

Character vector of CLI arguments. Defaults to 'commandArgs(trailingOnly = TRUE)'.

Details

CLI entry point: './tools/build_tools.R –help'

Value

Invisibly returns a list describing which tool-build steps ran. If '–help' or '-h' is supplied, returns invisibly with 'NULL'.

Examples

## Not run: 
run_build_tools()
run_build_tools("--skip-docs")
run_build_tools("--help")

## End(Not run)