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

tag.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24d54676a95b14a7340693b3ca1a49c3fd374711 (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
40
41
42
// turns out tagging isn't very complicated
// all the smarts are in the couch.
module.exports = tag
tag.usage = "[DEPRECATED] npm tag <name>@<version> [<tag>]"
          + "\nSee `dist-tag`"

tag.completion = require("./unpublish.js").completion

var npm = require("./npm.js")
  , mapToRegistry = require("./utils/map-to-registry.js")
  , npa = require("npm-package-arg")
  , semver = require("semver")
  , log = require("npmlog")

function tag (args, cb) {
  var thing = npa(args.shift() || "")
    , project = thing.name
    , version = thing.rawSpec
    , t = args.shift() || npm.config.get("tag")

  t = t.trim()

  if (!project || !version || !t) return cb("Usage:\n"+tag.usage)

  if (semver.validRange(t)) {
    var er = new Error("Tag name must not be a valid SemVer range: " + t)
    return cb(er)
  }

  log.warn("tag", "This command is deprecated. Use `npm dist-tag` instead.")

  mapToRegistry(project, npm.config, function (er, uri, auth) {
    if (er) return cb(er)

    var params = {
      version : version,
      tag     : t,
      auth    : auth
    }
    npm.registry.tag(uri, params, cb)
  })
}