a b/Makefile
1
md:
2
    Rscript -e "rmarkdown::render('README.Rmd', output_file = 'README.md')"
3
4
site:
5
    Rscript -e "rmarkdown::render('README.Rmd', output_file = 'README.md')"
6
    Rscript -e "pkgdown::build_site()"
7
8
check:
9
    Rscript -e "devtools::check()"
10
11
checkfast:
12
    Rscript -e "devtools::check(build_args = '--no-build-vignettes')"
13
14
bioc:
15
    Rscript -e "BiocCheck::BiocCheck('.')"
16
17
test:
18
    Rscript -e "devtools::test()"
19
20
doc:
21
    Rscript -e "devtools::document()"
22
23
build:
24
    Rscript -e "devtools::build()"
25
26
buildfast:
27
    Rscript -e "devtools::build(vignettes = FALSE)"
28
29
style:
30
    Rscript -e "styler::style_pkg()"
31
32
pr: style check site
33
    echo "If all checks have passed, you are ready to submit PR"