2020-10-02 17:52:19 -04:00
|
|
|
// ping the npm registry
|
|
|
|
// used by the ping and doctor commands
|
2025-01-10 08:20:27 -08:00
|
|
|
const npmFetch = require('npm-registry-fetch')
|
2021-03-23 14:58:11 -04:00
|
|
|
module.exports = async (flatOptions) => {
|
2025-01-10 08:20:27 -08:00
|
|
|
const res = await npmFetch('/-/ping', { ...flatOptions, cache: false })
|
2020-10-02 17:52:19 -04:00
|
|
|
return res.json().catch(() => ({}))
|
|
|
|
}
|