diff options
author | isaacs <i@izs.me> | 2013-07-12 08:55:57 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-07-12 08:56:26 -0700 |
commit | ff8a4058bfac4f360992cfe7adf04f910282cedc (patch) | |
tree | b271ef198babbc9c46c33bcda9826fbcc6bf0a6d /deps/npm/html/doc/api/npm-publish.html | |
parent | 6d91bd37075a53f42bab01915fa89ba4a4f0a075 (diff) | |
download | node-new-ff8a4058bfac4f360992cfe7adf04f910282cedc.tar.gz |
npm: Upgrade to 1.3.3
Diffstat (limited to 'deps/npm/html/doc/api/npm-publish.html')
-rw-r--r-- | deps/npm/html/doc/api/npm-publish.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/deps/npm/html/doc/api/npm-publish.html b/deps/npm/html/doc/api/npm-publish.html new file mode 100644 index 0000000000..d6738cb220 --- /dev/null +++ b/deps/npm/html/doc/api/npm-publish.html @@ -0,0 +1,66 @@ +<!doctype html> +<html> + <title>npm-publish</title> + <meta http-equiv="content-type" value="text/html;utf-8"> + <link rel="stylesheet" type="text/css" href="../../static/style.css"> + + <body> + <div id="wrapper"> +<h1><a href="../api/npm-publish.html">npm-publish</a></h1> <p>Publish a package</p> + +<h2 id="SYNOPSIS">SYNOPSIS</h2> + +<pre><code>npm.commands.publish([packages,] callback)</code></pre> + +<h2 id="DESCRIPTION">DESCRIPTION</h2> + +<p>Publishes a package to the registry so that it can be installed by name. +Possible values in the 'packages' array are:</p> + +<ul><li><p><code><folder></code>: +A folder containing a package.json file</p></li><li><p><code><tarball></code>: +A url or file path to a gzipped tar archive containing a single folder +with a package.json file inside.</p></li></ul> + +<p>If the package array is empty, npm will try to publish something in the +current working directory.</p> + +<p>This command could fails if one of the packages specified already exists in +the registry. Overwrites when the "force" environment variable is set.</p> + +<h2 id="SEE-ALSO">SEE ALSO</h2> + +<ul><li><a href="../misc/npm-registry.html">npm-registry(7)</a></li><li><a href="../cli/npm-adduser.html">npm-adduser(1)</a></li><li><a href="../api/npm-owner.html">npm-owner(3)</a></li></ul> +</div> +<p id="footer">npm-publish — npm@1.3.3</p> +<script> +;(function () { +var wrapper = document.getElementById("wrapper") +var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0) + .filter(function (el) { + return el.parentNode === wrapper + && el.tagName.match(/H[1-6]/) + && el.id + }) +var l = 2 + , toc = document.createElement("ul") +toc.innerHTML = els.map(function (el) { + var i = el.tagName.charAt(1) + , out = "" + while (i > l) { + out += "<ul>" + l ++ + } + while (i < l) { + out += "</ul>" + l -- + } + out += "<li><a href='#" + el.id + "'>" + + ( el.innerText || el.text || el.innerHTML) + + "</a>" + return out +}).join("\n") +toc.id = "toc" +document.body.appendChild(toc) +})() +</script> |