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
Currently, loading devtools causes shiny to be loaded, but it shouldn't. This is because devtools imports miniUI, which imports shiny.
Searching the code for miniUI, I see only this (and the corresponding entry in NAMESPACE):
#' @importFrom miniUI miniPage
Searching for miniPage, I see no other uses of it. So I think miniUI can be removed as a dependency, and I think this will make it so shiny will no longer be needed at all by devtools.
The text was updated successfully, but these errors were encountered:
Currently, loading devtools causes shiny to be loaded, but it shouldn't. This is because devtools imports miniUI, which imports shiny.
Searching the code for
miniUI
, I see only this (and the corresponding entry in NAMESPACE):Searching for
miniPage
, I see no other uses of it. So I think miniUI can be removed as a dependency, and I think this will make it so shiny will no longer be needed at all by devtools.The text was updated successfully, but these errors were encountered: