forked from r-lib/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.Rd
27 lines (25 loc) · 825 Bytes
/
create.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/create.R
\name{create}
\alias{create}
\title{Create a package}
\usage{
create(path, ..., open = FALSE)
}
\arguments{
\item{path}{A path. If it exists, it is used. If it does not exist, it is
created, provided that the parent path exists.}
\item{...}{Additional arguments passed to \code{\link[usethis:create_package]{usethis::create_package()}}}
\item{open}{If \code{TRUE}, \link[usethis:proj_activate]{activates} the new project:
\itemize{
\item If using RStudio desktop, the package is opened in a new session.
\item If on RStudio server, the current RStudio project is activated.
\item Otherwise, the working directory and active project is changed.
}}
}
\value{
The path to the created package, invisibly.
}
\description{
Create a package
}