21 lines
967 B
JavaScript
21 lines
967 B
JavaScript
|
const consolePrefix = `${'['.blue}${'dbd-soft-ui'.yellow}${']'.blue} `
|
||
|
|
||
|
async function npmDashCheck() {
|
||
|
await npmThemeCheck();
|
||
|
|
||
|
const latestVersion = checkArray['dist-tags'].latest
|
||
|
const currentVersion = require("../../../../index").version
|
||
|
if (currentVersion < latestVersion) console.log(`${consolePrefix}${'Your version of discord-dashboard is'.cyan} ${'outdated'.red}${'!'.cyan}`);
|
||
|
else console.log(`${consolePrefix}${'Your version of discord-dashboard is'.cyan} ${'up-to-date'.green}${'!'.cyan}`);
|
||
|
}
|
||
|
|
||
|
async function npmThemeCheck() {
|
||
|
const latestVersion = checkArray['dist-tags'].latest
|
||
|
const currentVersion = require("../../package.json").version
|
||
|
if (currentVersion < latestVersion) console.log(`${consolePrefix}${'Your version of dbd-soft-ui is'.cyan} ${'outdated'.red}${'!'.cyan}`);
|
||
|
else console.log(`${consolePrefix}${'Your version of dbd-soft-ui is'.cyan} ${'up-to-date'.green}${'!'.cyan}`);
|
||
|
}
|
||
|
|
||
|
exports.update = async () => {
|
||
|
await npmDashCheck()
|
||
|
}
|