Releases: jasenfinch/projecttemplates
projecttemplates 0.6.3
-
Fixed the path to the Dockerfile in the project build script (
misc/docker/build_image.sh
). -
Added bash headers to template shell scripts.
-
Set the default values of the arguments
github
,private
andgithub_actions
intemplate()
toFALSE
. -
Fixed the branch reference for adding a project to GitHub.
projecttemplates 0.6.2
- Fix for renv initialisation when Bioconductor dependencies are included in the argument
dependencies
.
projecttemplates 0.6.1
- Added the
sandbox
argument torenvInitialise()
to allow the selection of whether sandboxing is used duringrenv
initialisation.
projecttemplates 0.6.0
-
The template
run.R
script now outputs tomisc/run.R
. The templateREADME.md
has now been updated to reflect this. -
The template
misc/run.R
script now outputs a message to the console upon completion. -
The
tarchetypes
package is now referenced directly in template targets scripts. -
The template docker infrastructure now outputs to the directory
misc/docker
and now includes an image build script (/misc/docker/build_image.sh
) and a container run script (/misc/docker/run_container.sh
). -
jfmisc::writingChecks()
now replaces themanuscriptChecks()
function in themanuscript
template. -
The
renv::restore()
command has now been moved to the template.Rprofile
. -
The
targets
package and the magrittr%>%
are now loaded via the template.Rprofile
. -
The
bioconductor
argument replaces thebioc
argument inrenvInitialise()
to stipulate the Bioconductor version to use. -
Added the
targetsConfig()
function to add a_targets.yaml
to a project directory. This file is added automatically by thetemplate()
function. -
Fixed incorrect outputs in the figures, tables and supplementary output Rmarkdown files in the
manuscript
template. -
knitr
is now referenced directly in function calls in output template Rmarkdown files.
projecttemplates 0.5.8
-
The
renv
directory is now included in the generated.dockerignore
file if argumentrenv = TRUE
. -
The RStudio project file is now created even if the project template is generated outside of RStudio.
-
Errors encountered during the retrieval of the git signature are now reported during git initialisation.
projecttemplates 0.5.7
-
Script header added to generated
R/utils.R
file. -
data
andexports
directories added to the the generated.dockerignore
file. -
The generated
_targets.R
file is now formatted using thestyler
package.
projecttemplates 0.5.6
-
.dockerignore
file is now added to output project to ignore the_targets
directory if present. -
Target build time and object size are now added to the output pipeline graph in
run.R
. -
targets
package options set bytar_options_set()
now moved toutils.R
.
projecttemplates 0.5.5
-
Fixed the use of user
renv
settings during initialisation to ensure that the user cache is used. -
Simplified the
renv
cache restore term in the generated project Dockerfile.
projecttemplates 0.5.4
- Fixed warning that is returned when directories in the project
path
do not exist prior to template generation.