bot/node_modules/npm/lib/auth/oauth.js

9 lines
152 B
JavaScript
Raw Normal View History

2022-02-16 11:32:42 +01:00
const sso = require('./sso.js')
const login = (npm, opts) => {
npm.config.set('sso-type', 'oauth')
return sso(npm, opts)
}
module.exports = login