Current behaviour produces by default the output from readr (which can't be reprex'ed here, because it's via cat, no ignored by reprex). It'd be good to have a quiet option in write_package which simply did this:
if (quiet) {
op <- options(readr.show_progress = FALSE)
}
# ... write package code
if (quiet){
options(op)
}
Current behaviour produces by default the output from
readr(which can't bereprex'ed here, because it's viacat, no ignored byreprex). It'd be good to have aquietoption inwrite_packagewhich simply did this: