39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
/**
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const { Range } = require("semver") //eslint-disable-line no-unused-vars
|
|
const getPackageJson = require("./get-package-json")
|
|
const getSemverRange = require("./get-semver-range")
|
|
|
|
/**
|
|
* Get the `engines.node` field of package.json.
|
|
* @param {string} filename The path to the current linting file.
|
|
* @returns {Range|null} The range object of the `engines.node` field.
|
|
*/
|
|
function getEnginesNode(filename) {
|
|
const info = getPackageJson(filename)
|
|
return getSemverRange(info && info.engines && info.engines.node)
|
|
}
|
|
|
|
/**
|
|
* Gets version configuration.
|
|
*
|
|
* 1. Parse a given version then return it if it's valid.
|
|
* 2. Look package.json up and parse `engines.node` then return it if it's valid.
|
|
* 3. Return `>=8.0.0`.
|
|
*
|
|
* @param {string|undefined} version The version range text.
|
|
* @param {string} filename The path to the current linting file.
|
|
* This will be used to look package.json up if `version` is not a valid version range.
|
|
* @returns {Range} The configured version range.
|
|
*/
|
|
module.exports = function getConfiguredNodeVersion(version, filename) {
|
|
return (
|
|
getSemverRange(version) ||
|
|
getEnginesNode(filename) ||
|
|
getSemverRange(">=8.0.0")
|
|
)
|
|
}
|