a range string for semver, consisting of multiple SemverComparatorString, separated by spaces (AND operator), or the "||" characters (OR operator).
"||"
example: "1.x || >=2.5.0 || 5.0.0 - 7.2.3 ^6" this would be read as: "1.x.x" OR ">=2.5.0" OR (">=5.0.0" AND "<=7.2.3" AND "^6.0.0")
example: "1.x || >=2.5.0 || 5.0.0 - 7.2.3 ^6"
"1.x || >=2.5.0 || 5.0.0 - 7.2.3 ^6"
this would be read as:
"1.x.x" OR ">=2.5.0" OR (">=5.0.0" AND "<=7.2.3" AND "^6.0.0")
a range string for semver, consisting of multiple SemverComparatorString, separated by spaces (AND operator), or the
"||"
characters (OR operator).