Closed rjmackay closed 10 years ago
Using ~1.0.0 is equivalent to >= 1.0.0-0 < 1.1.0-0 I'm pretty sure this should either be ~1 meaning >= 1.0.0 < 2.0.0 or just >=1.0.0 depending on what you want to support.
~1.0.0
>= 1.0.0-0
< 1.1.0-0
~1
>= 1.0.0
< 2.0.0
>=1.0.0
https://github.com/isaacs/node-semver#ranges
Using
~1.0.0
is equivalent to>= 1.0.0-0
< 1.1.0-0
I'm pretty sure this should either be~1
meaning>= 1.0.0
< 2.0.0
or just>=1.0.0
depending on what you want to support.https://github.com/isaacs/node-semver#ranges