mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
902 B
19 lines
902 B
<h1><a href="../cli/npm-prune.html">npm-prune</a></h1> <p>Remove extraneous packages</p>
|
|
<h2 id="synopsis">SYNOPSIS</h2>
|
|
<pre><code>npm prune [<name> [<name ...]]
|
|
npm prune [<name> [<name ...]] [--production]
|
|
</code></pre><h2 id="description">DESCRIPTION</h2>
|
|
<p>This command removes "extraneous" packages. If a package name is
|
|
provided, then only packages matching one of the supplied names are
|
|
removed.</p>
|
|
<p>Extraneous packages are packages that are not listed on the parent
|
|
package's dependencies list.</p>
|
|
<p>If the <code>--production</code> flag is specified, this command will remove the
|
|
packages specified in your <code>devDependencies</code>.</p>
|
|
<h2 id="see-also">SEE ALSO</h2>
|
|
<ul>
|
|
<li><a href="../cli/npm-rm.html">npm-rm(1)</a></li>
|
|
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
|
|
<li><a href="../cli/npm-ls.html">npm-ls(1)</a></li>
|
|
</ul>
|
|
|
|
|