2014-08-05 08:32:25 +00:00
|
|
|
#!/usr/bin/env node
|
2016-10-09 19:14:02 +00:00
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2014-08-05 08:32:25 +00:00
|
|
|
process.chdir(__dirname);
|
2016-06-16 08:13:34 +00:00
|
|
|
|
|
|
|
// Perform node version check before loading any other files or modules
|
2018-11-27 11:15:01 +00:00
|
|
|
// Doing this check as soon as possible allows us to
|
|
|
|
// avoid ES6 parser errors or other issues
|
2018-01-11 11:33:36 +00:00
|
|
|
const pkg = require("./package.json");
|
2018-02-20 07:28:04 +00:00
|
|
|
|
2016-06-16 08:13:34 +00:00
|
|
|
if (!require("semver").satisfies(process.version, pkg.engines.node)) {
|
2018-11-27 11:15:01 +00:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
console.error("The Lounge requires Node.js " + pkg.engines.node + " (current version: " + process.version + ")");
|
|
|
|
console.error("Please upgrade Node.js in order to use The Lounge");
|
|
|
|
console.error("See https://thelounge.chat/docs/install-and-upgrade");
|
|
|
|
console.error();
|
2017-11-22 20:57:13 +00:00
|
|
|
|
|
|
|
process.exit(1);
|
2016-06-16 08:13:34 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 22:39:57 +00:00
|
|
|
require("./src/command-line");
|