summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/get-publish-config.js
blob: fa475434ff61bc701f62e18206c27c1b050955ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var Conf = require('../config/core.js').Conf
var RegClient = require('npm-registry-client')
var log = require('npmlog')

module.exports = getPublishConfig

function getPublishConfig (publishConfig, defaultConfig, defaultClient) {
  var config = defaultConfig
  var client = defaultClient
  log.verbose('getPublishConfig', publishConfig)
  if (publishConfig) {
    config = new Conf(defaultConfig)
    config.save = defaultConfig.save.bind(defaultConfig)

    // don't modify the actual publishConfig object, in case we have
    // to set a login token or some other data.
    config.unshift(Object.keys(publishConfig).reduce(function (s, k) {
      s[k] = publishConfig[k]
      return s
    }, {}))
    client = new RegClient(config)
  }

  return { config: config, client: client }
}