denysdovhan / bash-handbook

:book: For those who wanna learn Bash
https://git.io/bash-handbook
5.72k stars 756 forks source link

Update msee version. #45

Closed ghost closed 8 years ago

ghost commented 8 years ago

Update msee version.

Maybe this fixes #14.

denysdovhan commented 8 years ago

No need to do this, because ^ is already include 0.4.0:

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.

Difference between tilde(~) and caret(^) in package.json

ghost commented 8 years ago

Forgot to close :+1:

Thanks.

denysdovhan commented 8 years ago

:+1: