-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
Keep looking inside project #29
Comments
I run into that even on this project :) the The code causing this is here Lines 224 to 225 in 7a549b6
Perhaps this decision should be on a project type basis. |
Or a project type basis. With Also sometimes you have |
That's a good point, I hadn't considered directories that are more than one type of project, eg cargo and node project. Hmm... I'll have to think on that, also how to recurse directories that are not artifacts of the current project, the implementation now might make that a little tricky. |
Still, at least looking at just Rust and nodejs, it seems like differentiating between:
should be sufficient? So:
|
That makes sense. I'll think through it. I think this might also be a good opportunity to add integration tests for the project, and model these situations. |
I still have a lot of node_modules in subdirectories of nodejs projects |
For example, the
target
dir at<rust_project>/examples/<example>/target
is ignored, only<rust_project>/target
is removed.And if all examples were built for test purposes, the sum of those targets can often exceed the crate's main
target
The text was updated successfully, but these errors were encountered: