Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-15 Thread Chris Evans
quot; > > Sent: Wednesday, 14 April, 2021 19:40:39 > Subject: Re: [R-pkg-devel] Another newbie question: vignettes not appearing > in GitHub hosted package > remotes::install_github() is a function aimed at developers that need > the unreleased version of a package for tes

Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-15 Thread Georgi Boshnakov
Vignettes are not built by default when using remotes::install_github, request it explicitly: remotes::install_github("cpsyctc/CECPfuns", build_vignettes = TRUE) Georgi Boshnakov -Original Message- From: R-package-devel On Behalf Of Chris Evans Sent: 14 April 2021 17:53 To:

Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-14 Thread Gábor Csárdi
package-devel" > > Sent: Wednesday, 14 April, 2021 17:57:11 > > Subject: Re: [R-pkg-devel] Another newbie question: vignettes not appearing > > in GitHub hosted package > > > Hi Chris, > > > > You need to add the `build_vignettes = TRUE` argument to `install_

Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-14 Thread Chris Evans
sday, 14 April, 2021 17:57:11 > Subject: Re: [R-pkg-devel] Another newbie question: vignettes not appearing > in GitHub hosted package > Hi Chris, > > You need to add the `build_vignettes = TRUE` argument to `install_github()`. > > On 4/14/21 9:53 AM, Chris Evans wrote: &g

Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-14 Thread Gábor Csárdi
remotes::install_github() does not build the vignettes by default, you can use the build_opts argument to change this. Gabor On Wed, Apr 14, 2021 at 6:53 PM Chris Evans wrote: > > As ever, my package is https://github.com/cpsyctc/CECPfuns and I am building > withing Rstudio 1.4.1103 > > I am

Re: [R-pkg-devel] Another newbie question: vignettes not appearing in GitHub hosted package

2021-04-14 Thread Zhian N. Kamvar
Hi Chris, You need to add the `build_vignettes = TRUE` argument to `install_github()`. On 4/14/21 9:53 AM, Chris Evans wrote: As ever, my package is https://github.com/cpsyctc/CECPfuns and I am building withing Rstudio 1.4.1103 I am aiming for the package to have fairly comprehensive