Closed bshender closed 1 year ago
Can you send PR to save your name in the project history?
Unfortunately, my current employer is very strict about open source collaboration. I can open a request, but it would be several months at best, even though this one is basically just adding 3 letters in a couple places. If you or someone else would be able to make the fix before then that would be fine by me.
Sure. Fixed 3f04a96
I'm getting this error:
From this line: https://github.com/browserslist/update-db/blob/7ec485b186d8ae53dd4536fc0605a5073e6ee5c0/index.js#L62
The reason is that
yarn
is the name of the Hadoop command line tool. When the JS toolyarn
came about the team wasn't aware of this. They have since created the built-in aliasyarnpkg
that avoids the name collision. Those of us who use both tools just use the alias and have few problems. And most command line tools don't have the issue, even those that callyarn
, so long as you start them withyarnpkg
. But that isn't the case here where we usenpx
. The fix is simple enough, if we could update all instances ofyarn
being called with the aliasyarnpkg
this problem should be addressed, and since the alias is built in to theyarn
installer, it should be invisible to everyone. Try it on your machine, it's already there. Thank you.