Skip to content

Commit

Permalink
chore: include 20 in recommended Node serverions
Browse files Browse the repository at this point in the history
  • Loading branch information
tkurki committed Apr 6, 2024
1 parent 150a9f2 commit 3b068d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/signalk-server
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
const { engines } = require('../package.json');
const semver = require('semver');
const minimumVersion = engines.node;
const recommendedVersion = "18";
const recommendedVersion = "18 - 20";

if (!semver.satisfies(process.version, minimumVersion)) {
console.error(`The installed version of node (${process.version}) is older than the minimum required version (${minimumVersion}). See https://github.com/SignalK/signalk-server/wiki/Installing-and-Updating-Node.js for more information how to upgrade.`);
Expand Down

0 comments on commit 3b068d2

Please sign in to comment.