Can anyone explain the semantics of bower when specifying the package version?
I understand these:
"requirejs": "2.1.10",
"requirejs": ">=2.1"
But what about something like "requirejs": "~2.1"
?
Also, does "requirejs": "*"
mean the latest version?