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

tag.js « lib « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65430fe9307e56a6ed275a3288dc4b55c14242ff (plain)
1
2
3
4
5
module.exports = tag

function tag (uri, version, tagName, cb) {
  this.request("PUT", uri+"/"+tagName, { body : JSON.stringify(version) }, cb)
}