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?
Tried
yarn
oryarn install
- The result was the same in both cases
yarn install --frozen-lockfile
- Naturally, it was installed with no changes to the lock file.
- This is fine for just installation, but when making changes to the package, the same problem occurs because the lock file is updated.