-
Notifications
You must be signed in to change notification settings - Fork 9
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
Yarn support #234
Comments
Sure, agreed. Interested in pull requesting this in? |
Sure I can. Assuming it'll be two PRs, one for |
So I think I'll change this function: https://github.com/static-dev/spike-core/blob/master/lib/index.js#L153 to be a generic |
yep, that seems about right! |
Is there any kind of global spike config? |
Can I store the default install tool with the default template? |
Hey sorry for the late response here -- yeah you can, global config is right in the main js file here: https://github.com/static-dev/spike-core/blob/master/lib/index.js#L301 |
@jescalan How do I create a cli flag that does not need a keyword after it? Right now I have: s.addArgument(['--yarn', '-y'], {
help: 'Use yarn rather than npm to install dependencies'
}); and it says
I want to just be able to say |
I figured it out 😄 I had to use |
Hi @jescalan, I think it would be nice if when you run
spike new
it would have the option to install dependencies using yarn rather than npm, or at least give the option to not install dependencies.Thanks!
The text was updated successfully, but these errors were encountered: