-
-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Open
Description
There are various places that treat npm
/yarn
as a binary choice. pnpm
also exists and is pretty mature (and there may be others).
const useYarn = useNpm ? false : shouldUseYarn(); |
At the least it would be nice if CRA didn't create a yarn lockfile if it wasn't really sure it was executing with yarn
.
stevebeauge