mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 10:01:49 +00:00

PR-URL: https://github.com/nodejs/node/pull/4958 Reviewed-By: Myles Borins <mborins@us.ibm.com> Reviewed-By: Kat Marchán <kzm@sykosomatic.org> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
27 lines
728 B
Markdown
27 lines
728 B
Markdown
npm-prune(1) -- Remove extraneous packages
|
|
==========================================
|
|
|
|
## SYNOPSIS
|
|
|
|
npm prune [[<@scope>/]<pkg>...] [--production]
|
|
|
|
## DESCRIPTION
|
|
|
|
This command removes "extraneous" packages. If a package name is
|
|
provided, then only packages matching one of the supplied names are
|
|
removed.
|
|
|
|
Extraneous packages are packages that are not listed on the parent
|
|
package's dependencies list.
|
|
|
|
If the `--production` flag is specified or the `NODE_ENV` environment
|
|
variable is set to `production`, this command will remove the packages
|
|
specified in your `devDependencies`. Setting `--production=false` will
|
|
negate `NODE_ENV` being set to `production`.
|
|
|
|
## SEE ALSO
|
|
|
|
* npm-uninstall(1)
|
|
* npm-folders(5)
|
|
* npm-ls(1)
|