ignacioxd / ragin-mages

JavaScript MOBA game built with Phaser 3
https://raginmages.net
59 stars 21 forks source link

update deps #101

Closed geekingreen closed 6 years ago

ignacioxd commented 6 years ago

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?

geekingreen commented 6 years ago

Yeah it's updating the versions in the lock files so the latest packages will be selected.

ignacioxd commented 6 years ago

Should the package.json files be updated as well?

geekingreen commented 6 years ago

Shouldn't matter they were patch versions, yarn.lock just forces the download of the exact version until you update it.

geekingreen commented 6 years ago

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