Explorar el Código

Add make.R

tags/v0.1.1
Garrick Aden-Buie hace 8 años
padre
commit
4bc3d6c1af
Se han modificado 2 ficheros con 10 adiciones y 0 borrados
  1. +1
    -0
      .Rbuildignore
  2. +9
    -0
      make.R

+ 1
- 0
.Rbuildignore Ver fichero

@@ -2,3 +2,4 @@
^\.Rproj\.user$
^README\.Rmd$
^LICENSE\.md$
^make\.R$

+ 9
- 0
make.R Ver fichero

@@ -0,0 +1,9 @@
setwd(here::here("vignettes"))
message("Rendering vignettes/template-variables.Rmd for GitHub")
rmarkdown::render("template-variables.Rmd", output_format = rmarkdown::github_document(), quiet = TRUE)
unlink("template-variables.html")

setwd(here::here())
message("Rendering README.Rmd for GitHub")
rmarkdown::render("README.Rmd", quiet = TRUE)
unlink("README.html")

Cargando…
Cancelar
Guardar