npm: Upgrade to 1.3.17
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-bundle.html
1 <!doctype html>
2 <html>
3   <title>npm-bundle</title>
4   <meta http-equiv="content-type" value="text/html;utf-8">
5   <link rel="stylesheet" type="text/css" href="../../static/style.css">
6
7   <body>
8     <div id="wrapper">
9 <h1><a href="../cli/npm-bundle.html">npm-bundle</a></h1> <p>REMOVED</p>
10
11 <h2 id="DESCRIPTION">DESCRIPTION</h2>
12
13 <p>The <code>npm bundle</code> command has been removed in 1.0, for the simple reason
14 that it is no longer necessary, as the default behavior is now to
15 install packages into the local space.</p>
16
17 <p>Just use <code>npm install</code> now to do what <code>npm bundle</code> used to do.</p>
18
19 <h2 id="SEE-ALSO">SEE ALSO</h2>
20
21 <ul><li><a href="../cli/npm-install.html">npm-install(1)</a></li></ul>
22 </div>
23 <p id="footer">npm-bundle &mdash; npm@1.3.17</p>
24 <script>
25 ;(function () {
26 var wrapper = document.getElementById("wrapper")
27 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
28   .filter(function (el) {
29     return el.parentNode === wrapper
30         && el.tagName.match(/H[1-6]/)
31         && el.id
32   })
33 var l = 2
34   , toc = document.createElement("ul")
35 toc.innerHTML = els.map(function (el) {
36   var i = el.tagName.charAt(1)
37     , out = ""
38   while (i > l) {
39     out += "<ul>"
40     l ++
41   }
42   while (i < l) {
43     out += "</ul>"
44     l --
45   }
46   out += "<li><a href='#" + el.id + "'>" +
47     ( el.innerText || el.text || el.innerHTML)
48     + "</a>"
49   return out
50 }).join("\n")
51 toc.id = "toc"
52 document.body.appendChild(toc)
53 })()
54 </script>