I'm developing a package in RStudio with usethis
, trying to make use of best practices. Previously, I had run usethis::use_tidy_eval()
. Now, I'm using data.table
, and set this up by running usethis::use_data_table()
. I get a warning,
Warning message:
replacing previous import ‘data.table:::=’ by ‘rlang:::=’ when loading ‘breakdown’
because the NAMESPACE contains the the two lines:
importFrom(rlang,":=")
importFrom(data.table,":=")
It turns out I no longer need usethis::use_tidy_eval()
, so I'd like to revert it and in doing so get rid of the warning.
How can I undo whatever usethis
helper functions do? Must I edit the NAMESPACE
myself? How do I know what else was modified by usethis::use_tidy_eval()
? What about undoing usethis::use_pipe()
?