# setup -------------------------------------------------------------------
library(devtools)
use_git()
library(devtools)
use_build_ignore("dev_history_r_pkg.R")
use_roxygen_md()
use_pipe()
library(magrittr)
options(usethis.full_name = "Jiaxiang Li")
use_mit_license()
# rm -rf packrat
# desc --------------------------------------------------------------------
add2pkg::add_me(is_paste = TRUE)
file.edit("DESCRIPTION")
# add disclaimer ----------------------------------------------------------
file.edit("DESCRIPTION")
clipr::write_clip('`r add2pkg::add_disclaimer("Jiaxiang Li")`')
use_readme_rmd()
file.edit("README.Rmd")
rmarkdown::render("README.Rmd")
rstudioapi::viewer("README.html")
file.remove("README.html")
usethis::use_code_of_conduct()
# prettify ----------------------------------------------------------------
if (file.exists("README.Rmd")) {
file.rename("README.Rmd", "README-bak.Rmd")
file.edit("README-bak.Rmd")
}
use_readme_rmd()
file.edit("README.Rmd")
file.remove("README-bak.Rmd")
rmarkdown::render("README.Rmd")
rstudioapi::viewer("README.html")
file.remove("README.html")
# add commit --------------------------------------------------------------
glue::glue("Add metadata
1. license
1. readme
1. namespace
1. desc
1. coc
1. `%>%`
") %>% clipr::write_clip()
# coding ------------------------------------------------------------------
# add title
# build -------------------------------------------------------------------
library(devtools)
document()
load_all()
library(devtools)
document()
install()
# commit
# release -----------------------------------------------------------------
use_news_md()
file.edit("NEWS.md")
use_version()
usethis::use_github_release()
# publish -----------------------------------------------------------------
# open it and link it.
# https://zenodo.org/account/settings/github/
# push
# make public
use_news_md()
use_version()
file.edit("NEWS.md")
use_github_release()
rmarkdown::render("README.Rmd")
rstudioapi::viewer("README.html")
purrr::safely(file.remove)("README.html")
# 因为会更新 citations,但是要等一会。
# publish release
# add badge and citation --------------------------------------------------
# login zenodo and copy badge in markdown
clipr::write_clip('## Citations
```{r include=FALSE}
citations <- add2pkg::add_zenodo_citation("README.Rmd")
```
```{r echo=FALSE, results=\'asis\'}
cat(citations$Cite)
```
```{r echo=FALSE, results=\'asis\'}
cat(paste0("```BibTex\\n",citations$BibTex,"\\n```"))
```
```{r echo=FALSE, results=\'asis\'}
cat(citations$Comments)
```')
file.edit("README.Rmd")
# 需要等一段时间,有时候 doi 没有显示出来
rmarkdown::render("README.Rmd")
rstudioapi::viewer("README.html")
purrr::safely(file.remove)("README.html")
# add vignette ------------------------------------------------------------
use_vignette("lift_chart")
# pkgdown -----------------------------------------------------------------
start_time <- lubridate::now()
pkgdown::build_site()
end_time <- lubridate::now()
end_time - start_time
# add examlpes ------------------------------------------------------------
clipr::read_clip() %>%
stringr::str_c("#' ", .) %>%
clipr::write_clip()
clipr::read_clip() %>%
str_c("#' \\dontrun{", ., "}") %>%
clipr::write_clip()
# update template ---------------------------------------------------------
library(fs)
file_copy("dev_history_r_pkg.R", "../dev_history/refs/dev_history_r_pkg.R",
overwrite = TRUE)
# open it!
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.