-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
Ember-try uses Yarn
in Travis CI Trusty Build
#125
Comments
To add a +1 and some clarification on this, it appears There are some inconsistencies between how Yarn and NPM work (checking Node engine versions, for instance) that can cause CI tests to fail under one that pass under the other. I'm all for switching to Yarn, but I feel like I should decide when that happens by the presence of a |
Also curious about this. Have a |
|
Using |
I've experienced the Travis build of my ember-addons throw errors when executing
yarn install
underember try:one
, the error is because it had troubles to access some of the private npm repos.Although it is another concern, I was wondering the reason why my Travis build picked
Yarn
rather thanNPM
as the package manager. It turns out the condition has been configured asyarn.lock
is present andyarn
is installed globally since 0.2.12. In my repo I don't haveyarn.lock
but the fact is I'm usingTrusty
build of Travis (settingdist: trusty
in.travis.yml
) and Yarn was preinstalled there.Is there any option we could set in
ember-try
to manually configure package managers between Yarn and NPM?The text was updated successfully, but these errors were encountered: