Skip to content

Commit

Permalink
add comments to justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
slowkow committed Nov 4, 2024
1 parent 099a466 commit 51c0ada
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# Build the examples
examples:
R -e 'rmarkdown::render("vignettes/examples.Rmd"); beepr::beep()'

# Build the documentation files
man:
R -e 'devtools::document()'

# Install the package
install:
R -e 'devtools::install(build = TRUE, upgrade = "never")'

# Build the documentation website
site:
R -e 'pkgdown::build_site(); beepr::beep()'

install:
R -e 'devtools::install(build = TRUE, upgrade = "never")'

0 comments on commit 51c0ada

Please sign in to comment.