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
Add clean command #28
Comments
|
How could you do this without having to create a I just created a custom clean script: |
|
It could be invoked like this: |
|
I know the |
|
There are a few things that "clean" could mean, by the way:
And then for any of those options, there is the question of whether it should apply just to the given script, or also to all transitive dependencies. I'm currently thinking that |
It's because npm treats arguments without a leading dash as arguments for the underlying command. |
|
I found myself using 1 and 2 most of the time |
|
I am rather new to wireit and this is the first missing feature I ran into. Just sharing some ideas. |
|
My pipeline has a target "qa": "wireit",
"qa:clean": "find . -iname '.wireit' -type d | xargs -I{} rm -rf {}",
"qa:watch": "npm run qa --watch",I don't feel the need for anything else, particularly, since I can clean out non-versioned files ( I am most often running |
No description provided.
The text was updated successfully, but these errors were encountered: