mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-01-31 03:39:07 -06:00
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
const semver = require('semver')
|
|
const fsCachePath = path.resolve(__dirname, '.version')
|
|
|
|
let sessionCached
|
|
|
|
module.exports = async function getVersions () {
|
|
if (sessionCached) {
|
|
return sessionCached
|
|
}
|
|
|
|
let latest
|
|
const local = require(`../../package.json`).version
|
|
if (process.env.VUE_CLI_TEST || process.env.VUE_CLI_DEBUG) {
|
|
return (sessionCached = {
|
|
current: local,
|
|
latest: local
|
|
})
|
|
}
|
|
|
|
if (fs.existsSync(fsCachePath)) {
|
|
const cached = await fs.readFile(fsCachePath, 'utf-8')
|
|
const lastChecked = (await fs.stat(fsCachePath)).mtimeMs
|
|
const daysPassed = (Date.now() - lastChecked) / (60 * 60 * 1000 * 24)
|
|
if (daysPassed > 1) {
|
|
// if we haven't check for a new version in a day, wait for the check
|
|
// before proceeding
|
|
latest = await getAndCacheLatestVersion(cached)
|
|
} else {
|
|
// Otherwise, do a check in the background. If the result was updated,
|
|
// it will be used for the next 24 hours.
|
|
getAndCacheLatestVersion(cached)
|
|
latest = cached
|
|
}
|
|
} else {
|
|
// if the cache file doesn't exist, this is likely a fresh install
|
|
// so no need to check
|
|
latest = local
|
|
}
|
|
|
|
return (sessionCached = {
|
|
current: local,
|
|
latest
|
|
})
|
|
}
|
|
|
|
// fetch the latest version and save it on disk
|
|
// so that it is available immediately next time
|
|
async function getAndCacheLatestVersion (cached) {
|
|
const getPackageVersion = require('./getPackageVersion')
|
|
const res = await getPackageVersion('vue-cli-version-marker', 'latest')
|
|
if (res.statusCode === 200) {
|
|
const { version } = res.body
|
|
if (semver.valid(version) && version !== cached) {
|
|
await fs.writeFile(fsCachePath, version)
|
|
return version
|
|
}
|
|
}
|
|
return cached
|
|
}
|