update "semver" to v2.0.8

This commit is contained in:
Nathan Rajlich 2013-06-30 14:11:50 -07:00
parent fcbf1431a2
commit 60b975e3a1
7 changed files with 10 additions and 522 deletions

2
node_modules/semver/semver.js generated vendored
View file

@ -835,7 +835,7 @@ exports.maxSatisfying = maxSatisfying;
function maxSatisfying(versions, range, loose) {
return versions.filter(function(version) {
return satisfies(version, range, loose);
}).sort(compare)[0] || null;
}).sort(rcompare)[0] || null;
}
exports.validRange = validRange;