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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornpm team <ops+robot@npmjs.com>2021-07-15 23:09:18 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2021-07-21 05:50:42 +0300
commit65234bbce024dec9d5490b17137abe381a979a28 (patch)
tree854a54f4afb74e254a800de7f9bcc482723e4942 /deps/npm/docs/output/configuring-npm/folders.html
parentad5dc4c4698356e83a9f06eb5fbd337d9cb1317e (diff)
deps: upgrade npm to 7.20.0
PR-URL: https://github.com/nodejs/node/pull/39403 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/npm/docs/output/configuring-npm/folders.html')
-rw-r--r--deps/npm/docs/output/configuring-npm/folders.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/npm/docs/output/configuring-npm/folders.html b/deps/npm/docs/output/configuring-npm/folders.html
index 6cdae3cd1ec..929bfe1f770 100644
--- a/deps/npm/docs/output/configuring-npm/folders.html
+++ b/deps/npm/docs/output/configuring-npm/folders.html
@@ -176,11 +176,13 @@ Global installs on Windows go to <code>{prefix}/node_modules</code> (that is, no
<p>Scoped packages are installed the same way, except they are grouped together
in a sub-folder of the relevant <code>node_modules</code> folder with the name of that
scope prefix by the @ symbol, e.g. <code>npm install @myorg/package</code> would place
-the package in <code>{prefix}/node_modules/@myorg/package</code>. See <a href="../using-npm/scope.html"><code>scope</code></a> for more details.</p>
+the package in <code>{prefix}/node_modules/@myorg/package</code>. See
+<a href="../using-npm/scope.html"><code>scope</code></a> for more details.</p>
<p>If you wish to <code>require()</code> a package, then install it locally.</p>
<h4 id="executables">Executables</h4>
<p>When in global mode, executables are linked into <code>{prefix}/bin</code> on Unix,
-or directly into <code>{prefix}</code> on Windows.</p>
+or directly into <code>{prefix}</code> on Windows. Ensure that path is in your
+terminal’s <code>PATH</code> environment to run them.</p>
<p>When in local mode, executables are linked into
<code>./node_modules/.bin</code> so that they can be made available to scripts run
through npm. (For example, so that a test runner will be in the path