Add a make_imports
argument to config(), make(), outdated(), max_useful_jobs(), etc.
#136
Labels
make_imports
argument to config(), make(), outdated(), max_useful_jobs(), etc.
#136
Any time an internal
config
list is created,make_imports()
is called, even when this is not necessary. Sometimes, you know you work is up to date and you just want a quick graph. Themake_imports
argument will give the user control over this behavior. Similar behavior used to be in effect, but I dropped the ball when I was working on #121.Also, this line in dataframes_graph() can be changed from
config$outdated <- plan$target
toconfig$outdated <- outdated(config = config, make_imports = FALSE)
.The text was updated successfully, but these errors were encountered: