Skip to content

Commit

Permalink
feat: ✨ remove report creation from project setup function
Browse files Browse the repository at this point in the history
Closes #132
  • Loading branch information
lwjohnst86 committed Oct 4, 2024
1 parent c5f59b1 commit ef5a497
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
(#137).
- When creating a new `.gitignore`, include `.quarto` and `.DS_Store`
files (#141).
- It isn't always useful to have the report created when the project
is setup, so adding the report via `create_report()` is removed from
`project_setup()` (#142).

# prodigenr 0.6.2

Expand Down
3 changes: 1 addition & 2 deletions R/setup_project.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ setup_project <-
update_template("template-Rproj", paste0(proj_name, ".Rproj"))
fs::file_delete("template-Rproj")
update_template("README.md", data = list(ProjectName = proj_name))
suppressMessages(create_report())
})

}

# Git setup functions -------------------------------------------
Expand Down

0 comments on commit ef5a497

Please sign in to comment.