]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/doc/cli/npm-unpublish.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / doc / cli / npm-unpublish.md
1 npm-unpublish(1) -- Remove a package from the registry
2 ======================================================
3
4 ## SYNOPSIS
5
6     npm unpublish [@<scope>/]<name>[@<version>]
7
8 ## WARNING
9
10 **It is generally considered bad behavior to remove versions of a library
11 that others are depending on!**
12
13 Consider using the `deprecate` command
14 instead, if your intent is to encourage users to upgrade.
15
16 There is plenty of room on the registry.
17
18 ## DESCRIPTION
19
20 This removes a package version from the registry, deleting its
21 entry and removing the tarball.
22
23 If no version is specified, or if all versions are removed then
24 the root package entry is removed from the registry entirely.
25
26 Even if a package version is unpublished, that specific name and
27 version combination can never be reused.  In order to publish the
28 package again, a new version number must be used.
29
30 The scope is optional and follows the usual rules for `npm-scope(7)`.
31
32 ## SEE ALSO
33
34 * npm-deprecate(1)
35 * npm-publish(1)
36 * npm-registry(7)
37 * npm-adduser(1)
38 * npm-owner(1)