@socketsecurity/cli 0.14.9 → 0.14.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1054,7 +1054,7 @@ async function detect({
|
|
|
1054
1054
|
if ((0, _strings.isNonEmptyString)(nodeRange)) {
|
|
1055
1055
|
node = MAINTAINED_NODE_VERSIONS.some(v => {
|
|
1056
1056
|
const coerced = _semver$1.coerce(nodeRange);
|
|
1057
|
-
coerced && _semver$1.satisfies(coerced, `^${v}`);
|
|
1057
|
+
return coerced && _semver$1.satisfies(coerced, `^${v}`);
|
|
1058
1058
|
});
|
|
1059
1059
|
}
|
|
1060
1060
|
const browserslistQuery = (0, _objects$1.getOwn)(pkgJson, 'browserslist');
|