Skip to content

Commit

Permalink
chore(instr-tedious): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
david-luna committed May 7, 2024
1 parent 1dad796 commit 43e6416
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,10 @@ const config: ConnectionConfig & { userName: string; password: string } = {

const processVersion = process.version;
const tediousVersion = testUtils.getPackageVersion('tedious');
const incompatVersions =
const incompatVersions =
// tedious@16 removed support for node v14 https://github.com/tediousjs/tedious/releases/tag/v16.0.0
(semver.lt(processVersion, '15.0.0') && semver.gte(tediousVersion, '16.0.0')) ||
(semver.lt(processVersion, '15.0.0') &&
semver.gte(tediousVersion, '16.0.0')) ||
// tedious@17 removed support for node v16 and v19 https://github.com/tediousjs/tedious/releases/tag/v17.0.0
(semver.lt(processVersion, '17.0.0') && semver.gte(tediousVersion, '17.0.0'));

Expand Down

0 comments on commit 43e6416

Please sign in to comment.