-
-
Notifications
You must be signed in to change notification settings - Fork 201
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
Operator ranges are ambiguous. E.g.
> proto pin npm '>10, <11 || >11, <12'
│ SUCCESS
│ Pinned npm version >11, <12 || >10, <11 to config D:\SonarView\.prototoolsIt's not clear if the input was parsed as (>11 AND <12) OR (>10 AND <11) versus (>11) AND (<12 OR >10) AND (<11).
Describe the solution you'd like
Add (and admit as input) parentheses for grouping. e.g.:
Pinned npm version (>11, <12) || (>10, <11) to config D:\SonarView\.prototools
Describe alternatives you've considered
Normalize every version specifier expression to a union of intervals.
Additional context
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request