0.1.0 • Published 10 years ago

bower-semver v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

semver Build Status

A module based on semver with some differences to suit bower.

Installation

$ npm install bower-semver

Usage

Exactly the same API of semver, check its documentation.

Differences

.maxSatisfying()

Gives priority to non-prerelease versions:

maxSatisfying(['1.0.0', '1.0.1-rc.1'], '~1.0.0');  // Returns 1.0.0
maxSatisfying(['1.0.0', '1.1.0-rc.1'], '^1.0.0');  // Returns 1.0.0
maxSatisfying(['1.0.0', '1.1.0-rc.1'], '*');       // Returns 1.0.0
maxSatisfying(['0.9.0', '1.0.0-rc.1'], '~1.0.0');  // Returns 1.0.0-rc.1

.clean/.valid()

Keeps the build if any.

semver.clean('v1.0.0+patch1');  // 1.0.0+patch1

Tests

$ npm test

License

Released under the MIT License.