From: Cyril Sobierajewicz Date: Tue, 12 May 2020 08:59:05 +0000 (+0200) Subject: Add an upper bound to the `dhall-json` versions providing `yaml-to-dhall` X-Git-Tag: v1.6.0-1.28.0-3.0.0~3^2~1 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=41d2f5f572fbc8ce27048843f9c5c6b70a45450b;p=github%2Ffretlink%2Fnode-dhall-json-bin.git Add an upper bound to the `dhall-json` versions providing `yaml-to-dhall` --- diff --git a/preinstall.js b/preinstall.js index 91c3a52..292b73b 100644 --- a/preinstall.js +++ b/preinstall.js @@ -60,14 +60,16 @@ const readVersion = name => const dhallVersion = readVersion("dhall"); const dhallJsonVersion = readVersion("dhall-json"); -const isLowerThan = (version, upperBound) => +const isLesserThan = (version, upperBound) => semver.valid(version) && semver.lt(version, upperBound); +const isGreaterThan = (version, lowerBound) => + semver.valid(version) && semver.gt(version, lowerBound); -if (isLowerThan(dhallJsonVersion, "1.2.8")) { +if (isLesserThan(dhallJsonVersion, "1.2.8")) { throw new Error(`This release of the \`${pkg.name}\` npm package installs \`json-to-dhall\`, which isn’t provided by \`dhall-json@<1.2.8\`.`); } -if (isLowerThan(dhallJsonVersion, "1.3.0")) { - throw new Error(`This release of the \`${pkg.name}\` npm package installs \`yaml-to-dhall\`, which isn’t provided by \`dhall-json@<1.3.0\`.`); +if (isLesserThan(dhallJsonVersion, "1.3.0") || isGreaterThan(dhallJsonVersion, "1.5.0")) { + throw new Error(`This release of the \`${pkg.name}\` npm package installs \`yaml-to-dhall\`, which isn’t provided by \`dhall-json@<1.3.0 >1.5.0\`.`); } const release = `https://github.com/dhall-lang/dhall-haskell/releases/download/${dhallVersion}/dhall-json-${dhallJsonVersion}`; @@ -87,7 +89,7 @@ if (process.platform === "win32") { } else { const isDarwin = process.platform === 'darwin'; - if (isDarwin && isLowerThan(dhallJsonVersion, "1.4.0")) { + if (isDarwin && isLesserThan(dhallJsonVersion, "1.4.0")) { throw new Error(`Static macOS binaries aren’t provided by \`dhall-json@<1.4.0\`.`); }