-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdev_history.R
58 lines (47 loc) · 1.62 KB
/
dev_history.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
library(devtools)
library(usethis)
usethis::use_package("magrittr")
usethis::use_package("pillar")
usethis::use_package("ade4")
usethis::use_package("viridis")
usethis::use_package("gmp")
usethis::use_package("gridExtra")
attachment::att_to_description()
use_build_ignore("dev_history.R")
usethis::use_vignette("Fatala_Net","Fatala fishes")
usethis::use_vignette("Partial_correlations","Partial correlations")
pkgdown::build_site()
# workflow
devtools::document() # then build and restart
devtools::load_all()
devtools::run_examples() #handy for debug
devtools::check()
usethis::use_vignette("Usage","Usage example")
usethis::use_pkgdown()
usethis::use_github_action(url = "https://raw.githubusercontent.com/r-lib/actions/master/examples/pkgdown.yaml")
pkgdown::build_site()
# pkgdown::build_home()
# pkgdown::build_articles()
# pkgdown::build_reference()
pkgdown::preview_site(preview=TRUE)
##########
# unitary tests
usethis::use_testthat()
usethis::use_test("test_gener_data")
devtools::test()
covr::report()
######
# CRAN submission
# Check for CRAN specific requirements using rhub and save it in the results
# objects
results <- rhub::check_for_cran(platforms=c("fedora-clang-devel",
"windows-x86_64-devel",
"macos-highsierra-release"))
results2 <- rhub::check_for_cran()
# Get the summary of your results
results2$cran_summary()
# Generate your cran-comments.md, then you copy-paste the output from the function above
usethis::use_cran_comments()
devtools::check_win_devel()
usethis::use_news_md(open = rlang::is_interactive())
devtools::release()