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

set.js « dist-tags « lib « npm-registry-client « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1e17cde50ba3a414f8c9a6e9e158c41ba5b80ca (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = set

var assert = require("assert")
var url = require("url")

var npa = require("npm-package-arg")

function set (uri, params, cb) {
  assert(typeof uri === "string", "must pass registry URI to distTags.set")
  assert(
    params && typeof params === "object",
    "must pass params to distTags.set"
  )
  assert(typeof cb === "function", "muss pass callback to distTags.set")

  assert(
    typeof params.package === "string",
    "must pass package name to distTags.set"
  )
  assert(
    params.distTags && typeof params.distTags === "object",
    "must pass distTags map to distTags.set"
  )
  assert(
    params.auth && typeof params.auth === "object",
    "must pass auth to distTags.set"
  )

  var p = npa(params.package)
  var package = p.scope ? params.package.replace("/", "%2f") : params.package
  var rest = "-/package/"+package+"/dist-tags"

  var options = {
    method : "PUT",
    body : JSON.stringify(params.distTags),
    auth : params.auth
  }
  this.request(url.resolve(uri, rest), options, cb)
}