Closed geekingreen closed 6 years ago
Yeah it's updating the versions in the lock files so the latest packages will be selected.
Should the package.json files be updated as well?
Shouldn't matter they were patch versions, yarn.lock just forces the download of the exact version until you update it.
for instance package.json is set to @babel/core": "^7.0.0-beta.42"
so yarn.lock had locked in the version at 7.0.0-beta.42, but the caret ^ means that it should be capable of upgrading to the patch version of 7.0.0-beta.44, but the yarn.lock is still forcing you to 7.0.0-beta.42, running yarn upgrade-interactive
allows you to update the yarn.lock file
Hey @geekingreen, can you say a bit about what this is for? Looks like it's just the lock files, but did anything actually change?