calibre
Version:
Calibre - Page speed performance testing with Google Lighthouse
16 lines (12 loc) • 452 B
JavaScript
import Configstore from 'configstore'
const retrieveToken = () => {
const config = new Configstore('calibre')
const token = process.env.CALIBRE_API_TOKEN || config.get('token')
if (!token) {
throw new Error(
'Please set your Calibre API token by running `calibre token set`\n or set the environment variable CALIBRE_API_TOKEN.\n\n See calibreapp.com/docs/api/tokens for help.'
)
}
return token
}
export default retrieveToken