dev_mode {devtools} | R Documentation |
Activate and deactivate development mode.
Description
When activated, dev_mode
creates a new library for storing installed
packages. This new library is automatically created when dev_mode
is
activated if it does not already exist.
This allows you to test development packages in a sandbox, without
interfering with the other packages you have installed.
Usage
dev_mode(on = NULL, path = getOption("devtools.path"))
Arguments
on |
turn dev mode on ( |
path |
directory to library. |
Examples
## Not run:
dev_mode()
dev_mode()
## End(Not run)
[Package devtools version 2.4.5 Index]