Skip to content

Commit

Permalink
fix formatting of empty spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
k2s committed Oct 29, 2022
1 parent 0fd05c2 commit e78a63f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/server/bootevent.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function boot (env, language) {

//////////////////////////////////////////////////
// Check Node version.
// Latest Node LTS releases are recommended and supported.
// Latest Node LTS releases are recommended and supported.
// Current Node releases MAY work, but are not recommended. Will be tested in CI
// Older Node versions or Node versions with known security issues will not work.
///////////////////////////////////////////////////
Expand All @@ -35,7 +35,7 @@ function boot (env, language) {
var nodeVersion = process.version;

const isLTS = process.release.lts ? true : false;

if (isLTS && (semver.satisfies(nodeVersion, '^16.0.0') || semver.satisfies(nodeVersion, '^14.0.0'))) {
//Latest Node 14 LTS and Node 16 LTS are recommended and supported.
//Require at least Node 14 without known security issues
Expand Down Expand Up @@ -267,7 +267,7 @@ function boot (env, language) {
function setupListeners (ctx, next) {

console.log('Executing setupListeners');

if (hasBootErrors(ctx)) {
return next();
}
Expand Down

0 comments on commit e78a63f

Please sign in to comment.