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

tag.js « 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: 96136b717de602cadb5095fdbe0b7127d1ceb6fa (plain)
1
2
3
4
5
6

module.exports = tag

function tag (project, version, tag, cb) {
  this.request("PUT", project+"/"+tag, JSON.stringify(version), cb)
}