I have a large site built on blogdown. Every day, there are several new .Rmd files that need to be rendered to html files. Before this recent blogdown update, I relied on serve_site() to render the new .Rmd files. After the update, as mentioned in the "release notes", we wouldn't need to call serve_site() explicitly; however, if I didn't call serve_site(), I cannot seem to get the html files rendered, and cannot preview the site in Rstudio. The public/ did not get updated either. (Even if I call serve_site(), I still cannot get the html files rendered...)
I noticed that blogdown::build_site(build_rmd = TRUE)
can render all rmd files, but I don't want to rebuild the whole site. I wondered if I miss anything, or is there a way that I can only get the new .Rmd files render to html and copied to the public/ directory automatically in this new version? Thank you so much!