Skip to content

Commit

Permalink
simplify visc_empty package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kelliemac committed Jul 24, 2024
1 parent d9eddce commit 660e9af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions inst/rmarkdown/templates/visc_empty/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ library(VISCfunctions)
check_pandoc_version()
# packages installed from CRAN
packages_needed <- c("conflicted", "tidyverse", "knitr", "kableExtra", "rprojroot", "remotes")
packages_needed <- c("conflicted", "dplyr", "knitr", "kableExtra", "rprojroot")
install_load_cran_packages(packages_needed)
# knitr options
Expand Down Expand Up @@ -135,7 +135,8 @@ kable(
```{r Software-Package-Version-Information, results="asis", warning=kable_warnings}
kable(
my_session_info$packages_table,
format = output_type, booktabs = TRUE,
format = output_type,
booktabs = TRUE,
linesep = "",
caption = "Reproducibility software package version information"
) %>%
Expand Down
3 changes: 2 additions & 1 deletion inst/rmarkdown/templates/visc_report/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,8 @@ kable(
```{r Software-Package-Version-Information, results="asis", warning=kable_warnings}
kable(
my_session_info$packages_table,
format = output_type, booktabs = TRUE,
format = output_type,
booktabs = TRUE,
linesep = "",
caption = "Reproducibility software package version information"
) %>%
Expand Down

0 comments on commit 660e9af

Please sign in to comment.