I installed node_modules using yarn on a cloned project.
The original lockfile has double quotation marks and the newly created lockfile does not. Also, the order of integirity, version, etc. have all changed. Is there any way to configure yarn so that the original file format is used?
yarn
or yarn install
yarn install --frozen-lockfile
The project was supposed to use yarn
, but one member was using npm
.