Allow built-in install task#110
Conversation
For example yarn-error.log
Codecov Report
@@ Coverage Diff @@
## master #110 +/- ##
==========================================
- Coverage 92.88% 91.95% -0.94%
==========================================
Files 22 22
Lines 464 460 -4
==========================================
- Hits 431 423 -8
- Misses 33 37 +4
Continue to review full report at Codecov.
|
|
Thank you for this PR. However, because of I think that this is out of scope because |
|
Thank you @mysticatea so much for your feedback! That's a good idea to make sure the user knows what they are doing. I was also thinking that Previously, I thought How about using for example {
"scripts": {
"install-sub-dependencies": "cd sub && run-s clean command:install"
}
}Or maybe even better by for example adding a specific argument to specify a command: {
"scripts": {
"install-sub-dependencies": "cd sub && run-s clean --command install"
}
}Would that be a good way forward? Thanks for the consideration! |
|
I apology that I'm late to respond. About the The |
a830920 to
43a6b16
Compare
Wow! What a nice, well-structured repo and tool you have here!
I want to be able to have a run-script
"install-sub-dependencies": "cd sub/ && run-s install", which doesnpm installoryarn installto install the dependencies in thesub/project, depending on how the main script was called.This PR enables the
installtask, which is run without"run"before it.