Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't try to source README.md files in components/pages folders #9

Closed
machow opened this issue Mar 27, 2019 · 2 comments
Closed

Don't try to source README.md files in components/pages folders #9

machow opened this issue Mar 27, 2019 · 2 comments

Comments

@machow
Copy link

machow commented Mar 27, 2019

image

AFAICT the source_dirs function would just need to filter for R source files...

> source_dirs
function (...) 
{
    list(...) %>% purrr::walk(~{
        dir(.x, full.names = TRUE) %>% purrr::walk(source)
    })
}
@ramnathv
Copy link
Contributor

@machow Use shinybones::source_dirs so it sources only the R files. I had a version of this function in dcdash that needs to be removed to prevent the namespace conflict, that is causing this behavior.

@machow
Copy link
Author

machow commented Mar 29, 2019

@ramnathv thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants