You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The create_description() function from devtools prints out DESCRIPTION by default:
devtools::create_description(quiet=FALSE)
#> No DESCRIPTION found. Creating with values:#> Package: Rtmp5PZ0dI#> Title: What the Package Does (one line, title case)#> Version: 0.0.0.9000#> Authors@R: person("First", "Last", email = "first.last@example.com", role = c("aut", "cre"))#> Description: What the package does (one paragraph).#> Depends: R (>= 3.4.3)#> License: What license is it under?#> Encoding: UTF-8#> LazyData: true#> [1] TRUE
Right now usethis::use_description() only writes the DESCRIPTION file but doesn't print out information. I was wondering if it'd be useful to add a quite = TRUE argument in usethis::use_description(), so that users can have an option to see the output in the console.
The text was updated successfully, but these errors were encountered:
I think it probably just makes more sense to print this to screen again. I suspect the suppression of that was more a side effect of changing the internals than some explicit choice.
jennybc
changed the title
A quiet argument in use_description()?use_description(): be more verbose (again)
Feb 26, 2018
The
create_description()
function fromdevtools
prints out DESCRIPTION by default:Right now
usethis::use_description()
only writes the DESCRIPTION file but doesn't print out information. I was wondering if it'd be useful to add aquite = TRUE
argument inusethis::use_description()
, so that users can have an option to see the output in the console.The text was updated successfully, but these errors were encountered: