SquadJS/squad-server/utils/constants.js

15 lines
492 B
JavaScript
Raw Normal View History

import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const SQUADJS_VERSION = JSON.parse(
2020-10-05 12:52:01 -05:00
fs.readFileSync(path.resolve(__dirname, '../../package.json'), 'utf8')
).version;
/* As set out by the terms of the license, the following should not be modified. */
const COPYRIGHT_MESSAGE = `Powered by SquadJS, Copyright © ${new Date().getFullYear()}`;
2020-10-25 09:24:48 -05:00
export { SQUADJS_VERSION, COPYRIGHT_MESSAGE };