JSPM

semver-max

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2038
  • Score
    100M100P100Q117408F
  • License MIT

Find maximum (or minimum) version according to semver

Package Exports

  • semver-max

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (semver-max) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

npm

semver-max

Build Status Dependency Status

Find maximum (or minimum) version according to semver.

Usage

Pass versions in the arguments:

semverMax('0.0.0', '0.1.0', '1.0.0')
//=> '1.0.0'

Or reduce over an array:

['0.0.0', '0.1.0', '1.0.0'].reduce(semverMax)
//=> '1.0.0'

API

semverMax(version1, version2, ...)

Returns the maximum version.

semverMax.gt(version1, version2, ...)

semverMax.gte(version1, version2, ...)

semverMax.lt(version1, version2, ...)

semverMax.lte(version1, version2, ...)

Use a different comparator (see npm/node-semver).

semverMax.gt computes the maximum (the other name for semverMax), semverMax.lt computes the minimum instead.

The difference between semverMax.gt and semverMax.gte (or semverMax.lt and semverMax.lte) is a bit more subtle:

semverMax.gt('0.0.0', '1.0.0', 'v0.1.0', 'v1.0.0')
//=> '1.0.0'

semverMax.gte('0.0.0', '1.0.0', 'v0.1.0', 'v1.0.0')
//=> 'v1.0.0'

Install

npm install semver-max

License

MIT