-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_package.R
41 lines (31 loc) · 900 Bytes
/
build_package.R
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
28
29
30
31
32
33
34
35
36
37
38
39
40
usethis::use_cran_badge()
usethis::use_lifecycle_badge(stage = "superseded")
cranlogs::cranlogs_badge(package_name = "tidycat", summary = "grand-total")
# usethis::use_pipe()
# usethis::use_tibble()
# usethis::use_news_md()
usethis::use_build_ignore(
c("build_package.R", "hex",
"README")
)
usethis::create_github_token()
gitcreds::gitcreds_set()
usethis::use_github()
usethis::git_sitrep()
usethis::git_vaccinate()
usethis::use_github_actions()
usethis::git_remotes()
usethis::gh_token_help()
gitcreds::gitcreds_set()
usethis::use_github(protocol = "https", authtoken = GITHUB_PAT)
usethis::use_github_links()
usethis::use_github_actions_badge()
usethis::use_github_action("pkgdown")
roxygen2::roxygenise()
devtools::check()
devtools::build()
file.show("NEWS.md")
usethis::use_pkgdown()
pkgdown::build_site(run_dont_run = TRUE)
pkgdown::build_reference()
usethis::use_spell_check()