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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'html/doc/set.html')
-rw-r--r--html/doc/set.html16
1 files changed, 9 insertions, 7 deletions
diff --git a/html/doc/set.html b/html/doc/set.html
index b5b20ca4f..e83bd9f4b 100644
--- a/html/doc/set.html
+++ b/html/doc/set.html
@@ -6,7 +6,7 @@
<body>
<div id="wrapper">
-<h1><a href="config.html">npm config</a></h1> <p>Manage the npm configuration file</p>
+<h1><a href="config.html">config</a></h1> <p>Manage the npm configuration file</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
@@ -100,7 +100,7 @@ npm ls --global --parseable --long --loglevel info</code></pre>
<h2 id="Per-Package-Config-Settings">Per-Package Config Settings</h2>
-<p>When running scripts (see <code><a href="scripts.html">npm scripts</a></code>)
+<p>When running scripts (see <code><a href="scripts.html">scripts</a></code>)
the package.json "config" keys are overwritten in the environment if
there is a config param of <code>&lt;name&gt;[@&lt;version&gt;]:&lt;key&gt;</code>. For example, if
the package.json has this:</p>
@@ -172,7 +172,7 @@ to trust only that specific signing authority.</p>
<ul><li>Default: Windows: <code>~/npm-cache</code>, Posix: <code>~/.npm</code></li><li>Type: path</li></ul>
-<p>The location of npm's cache directory. See <code><a href="cache.html">npm cache</a></code></p>
+<p>The location of npm's cache directory. See <code><a href="cache.html">cache</a></code></p>
<h3 id="color">color</h3>
@@ -224,7 +224,7 @@ or <code>"notepad"</code> on Windows.</li><li>Type: path</li></ul>
<p>Operates in "global" mode, so that packages are installed into the
<code>prefix</code> folder instead of the current working directory. See
-<code><a href="folders.html">npm folders</a></code> for more on the differences in behavior.</p>
+<code><a href="folders.html">folders</a></code> for more on the differences in behavior.</p>
<ul><li>packages are installed into the <code>prefix/node_modules</code> folder, instead of the
current working directory.</li><li>bin files are linked to <code>prefix/bin</code></li><li>man pages are linked to <code>prefix/share/man</code></li></ul>
@@ -494,7 +494,7 @@ will fail.</p>
<ul><li>Default: false</li><li>Type: Boolean</li></ul>
<p>Set to show short usage output (like the -H output)
-instead of complete help when doing <code><a href="help.html">npm help</a></code>.</p>
+instead of complete help when doing <code><a href="help.html">help</a></code>.</p>
<h3 id="user">user</h3>
@@ -551,7 +551,7 @@ then answer "no" to any prompt.</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
-<ul><li><a href="folders.html">npm folders</a></li><li><a href="npm.html">npm</a></li></ul>
+<ul><li><a href="folders.html">folders</a></li><li><a href="npm.html">npm</a></li></ul>
</div>
<p id="footer">set &mdash; npm@1.0.28-pre-DEV-UNSTABLE</p>
<script>
@@ -576,7 +576,9 @@ toc.innerHTML = els.map(function (el) {
out += "</ul>"
l --
}
- out += "<li><a href='#" + el.id + "'>" + el.innerHTML + "</a>"
+ out += "<li><a href='#" + el.id + "'>" +
+ ( el.innerText || el.text || el.innerHTML)
+ + "</a>"
return out
}).join("\n")
toc.id = "toc"