I haven't tried it yet but I will be able to tonight
a
agrosner
04/11/2018, 2:50 PM
yeah. if you are, be careful of "^" in dependencies. its pretty much like + in gradle. also ensure you if youre using npm to lock the versions. yarn should do this for you automatically
g
gbaldeck
04/11/2018, 2:54 PM
I'm using yarn, I like to keep the ^ so it will increment my minor versions. Are you saying yarn doesnt do that?
a
agrosner
04/11/2018, 2:55 PM
Yarn autolocks based on versions in package.json. if you run yarn upgrade it will move the versions to next level based on range
agrosner
04/11/2018, 2:56 PM
Inspecting the yarn.lock will tell you what version it's using
g
gbaldeck
04/11/2018, 2:57 PM
Ok, good to know. I need to go through and do minor version upgrades since react 16.3 was released.