You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that 1.2.3-alpha < 1.2.3, i.e. "!(>= 1.2.3), but semver_satisfies(1.2.3, 1.2.3-alpha, ~) == 1
Note that 1.3.0-alpha < 1.3.0, but semver_satisfies(1.2.3, 1.3.0-alpha, ~) == 0.
Per https://docs.npmjs.com/misc/semver#tilde-ranges-123-12-1
~1.2.3 := >=1.2.3 <1.(2+1).0 := >=1.2.3 <1.3.0
Note that
1.2.3-alpha < 1.2.3
, i.e. "!(>= 1.2.3)
, butsemver_satisfies(1.2.3, 1.2.3-alpha, ~) == 1
Note that
1.3.0-alpha < 1.3.0
, butsemver_satisfies(1.2.3, 1.3.0-alpha, ~) == 0
.outputs
The text was updated successfully, but these errors were encountered: