[d84c2d]: / Makefile

Download this file

34 lines (23 with data), 665 Bytes

 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
md:
Rscript -e "rmarkdown::render('README.Rmd', output_file = 'README.md')"
site:
Rscript -e "rmarkdown::render('README.Rmd', output_file = 'README.md')"
Rscript -e "pkgdown::build_site()"
check:
Rscript -e "devtools::check()"
checkfast:
Rscript -e "devtools::check(build_args = '--no-build-vignettes')"
bioc:
Rscript -e "BiocCheck::BiocCheck('.')"
test:
Rscript -e "devtools::test()"
doc:
Rscript -e "devtools::document()"
build:
Rscript -e "devtools::build()"
buildfast:
Rscript -e "devtools::build(vignettes = FALSE)"
style:
Rscript -e "styler::style_pkg()"
pr: style check site
echo "If all checks have passed, you are ready to submit PR"