-
-
Notifications
You must be signed in to change notification settings - Fork 242
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
Allow built-in install task #110
base: master
Are you sure you want to change the base?
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 install
oryarn install
to install the dependencies in thesub/
project, depending on how the main script was called.This PR enables the
install
task, which is run without"run"
before it.