-
Notifications
You must be signed in to change notification settings - Fork 213
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
Adds detection for yarn, and '--no-yarn' to suppress detection #492
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This might need to be updated if #458 goes in, as this currently only looks for |
Build is failing before it starts due to the node version used to run the build:
|
@joaomoreno I bumped the node version in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
This adds automatic detection of
yarn
based on the presence of either ayarn.lock
or.yarnrc
file in the current directory. Passing--yarn
or--no-yarn
disables automatic detection.Fixes #480