@voxpelli/semver-set
TypeScript icon, indicating that this package has built-in type declarations

5.0.2 • Public • Published

@voxpelli/semver-set

Finds intersections between semantic version ranges.

npm version npm downloads Module type: ESM Types in JS js-semistandard-style Follow @voxpelli@mastodon.social

Started out as a fork of izaakschroeder/semver-set, triggered by the lack of bug fixes in that project, but has now been rewritten from scratch to fix issue with missing license in original project.

Usage

semverIntersect(firstRange, secondRange, [{ loose: false }])

Supports the semver loose option in an optional third argument.

import { semverIntersect } from '@voxpelli/semver-set';

// ^2.2.0
semverIntersect('^1.1 || ^2.2 || >=5', '^2.2.0-alpha1');

// undefined
semverIntersect('~2.2.4', '~2.3.0');

intersect(...ranges) (deprecated)

The original semver-set intersect() method is supported to ensure backwards compatibility

import { intersect } from '@voxpelli/semver-set';

// ^2.2.0
intersect('^1.1 || ^2.2 || >=5', '^2.2.0-alpha1');

// null
intersect('~2.2.4', '~2.3.0');

Readme

Keywords

none

Package Sidebar

Install

npm i @voxpelli/semver-set

Weekly Downloads

7,611

Version

5.0.2

License

MIT

Unpacked Size

15.2 kB

Total Files

9

Last publish

Collaborators

  • voxpelli