Skip to content

Commit c570a34

Browse files
committed
fix(linting): no-unused-vars
1 parent ad8ff11 commit c570a34

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

bin/semver.js

+5-14
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,11 @@ const main = () => {
119119
return fail()
120120
}
121121
}
122-
return success(versions)
122+
versions
123+
.sort((a, b) => semver[reverse ? 'rcompare' : 'compare'](a, b, options))
124+
.map(v => semver.clean(v, options))
125+
.map(v => inc ? semver.inc(v, inc, options, identifier, identifierBase) : v)
126+
.forEach(v => console.log(v))
123127
}
124128

125129
const failInc = () => {
@@ -129,19 +133,6 @@ const failInc = () => {
129133

130134
const fail = () => process.exit(1)
131135

132-
const success = () => {
133-
const compare = reverse ? 'rcompare' : 'compare'
134-
versions.sort((a, b) => {
135-
return semver[compare](a, b, options)
136-
}).map((v) => {
137-
return semver.clean(v, options)
138-
}).map((v) => {
139-
return inc ? semver.inc(v, inc, options, identifier, identifierBase) : v
140-
}).forEach((v, i, _) => {
141-
console.log(v)
142-
})
143-
}
144-
145136
const help = () => console.log(
146137
`SemVer ${version}
147138

classes/range.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -470,9 +470,10 @@ const replaceGTE0 = (comp, options) => {
470470
// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5
471471
// 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do
472472
// 1.2 - 3.4 => >=1.2.0 <3.5.0-0
473+
// TODO build?
473474
const hyphenReplace = incPr => ($0,
474475
from, fM, fm, fp, fpr, fb,
475-
to, tM, tm, tp, tpr, tb) => {
476+
to, tM, tm, tp, tpr) => {
476477
if (isX(fM)) {
477478
from = ''
478479
} else if (isX(fm)) {

0 commit comments

Comments
 (0)