chesleybrown / grunt-tabs4life

Grunt task for enforcing a very opinionated coding style.
MIT License
4 stars 1 forks source link

upgrade dependency versions #4

Closed jurko-gospodnetic closed 9 years ago

jurko-gospodnetic commented 9 years ago

Some dependency versions that could be upgraded:

chesleybrown commented 9 years ago

These are all the same major version which is what the caret symbol installs.

In the simplest terms, the tilde matches the most recent minor version (the middle number). ~1.2.3 will match all 1.2.x versions but will miss 1.3.0.

The caret, on the other hand, is more relaxed. It will update you to the most recent major version (the first number). ^1.2.3 will match any 1.x.x release including 1.3.0, but will hold off on 2.0.0.