spotify-dl
Version:
Spotify Songs, Playlist & Album Downloader
22 lines (19 loc) • 574 B
JavaScript
import axios from 'axios';
import meow from 'meow';
const checkVersion = async () => {
const res =
await axios.default(
'https://api.github.com/repos/SwapnilSoni1999/spotify-dl/tags',
);
const latestVersion = res.data[0].name;
const pkg = meow('', { importMeta: import.meta }).pkg
if (pkg.version !== latestVersion) {
console.log([
'\n========Update Available========',
'Use npm install -g spotify-dl',
'to update the package.',
'================================\n',
].join('\n'));
}
};
export default checkVersion;