I've experienced the Travis build of my ember-addons throw errors when executing yarn install under ember 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 than NPM as the package manager. It turns out the condition has been configured as yarn.lock is present and yarn is installed globally since 0.2.12. In my repo I don't have yarn.lock but the fact is I'm using Trusty build of Travis (setting dist: 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?
I've experienced the Travis build of my ember-addons throw errors when executing
yarn installunderember 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
Yarnrather thanNPMas the package manager. It turns out the condition has been configured asyarn.lockis present andyarnis installed globally since 0.2.12. In my repo I don't haveyarn.lockbut the fact is I'm usingTrustybuild of Travis (settingdist: trustyin.travis.yml) and Yarn was preinstalled there.Is there any option we could set in
ember-tryto manually configure package managers between Yarn and NPM?