Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hosted-git-info-from-manifest.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9592b0b3a937b8a20a88499612280c6ca385665b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// given a manifest, try to get the hosted git info from it based on
// repository (if a string) or repository.url (if an object)
// returns null if it's not a valid repo, or not a known hosted repo
const hostedGitInfo = require('hosted-git-info')
module.exports = mani => {
  const r = mani.repository
  const rurl = !r ? null
    : typeof r === 'string' ? r
    : typeof r === 'object' && typeof r.url === 'string' ? r.url
    : null

  // hgi returns undefined sometimes, but let's always return null here
  return (rurl && hostedGitInfo.fromUrl(rurl.replace(/^git\+/, ''))) || null
}