garie
garie copied to clipboard
[Versioning] Change package.json to use current lighthouse version
Currently Lighthouse version is hardcoded to ^3.0.3 maybe it's a good idea to switch this to ^3 to always use the newest version within the current major of lighthouse.
Hi @cmaerz the current carrot on ^3.0.3
means it would take the latest minor and patch the change your are suggesting would mean it would still just have the same outcome.
To do what you have suggested I think the following could work and it would get the latest major version: "lighthouse": "*",
in the package.json
This is a nice explanation: https://docs.npmjs.com/about-semantic-versioning
Hm ok, i got this. But why did i get 3.0.3 on my first install then?
I would expect it to use the 3.2.1 release of lighthouse once installed. As this is the last minor V3 version.