]> 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-deprecate.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-deprecate.md
1 npm-deprecate(1) -- Deprecate a version of a package
2 ====================================================
3
4 ## SYNOPSIS
5
6     npm deprecate <name>[@<version>] <message>
7
8 ## DESCRIPTION
9
10 This command will update the npm registry entry for a package, providing
11 a deprecation warning to all who attempt to install it.
12
13 It works on version ranges as well as specific versions, so you can do
14 something like this:
15
16     npm deprecate my-thing@"< 0.2.3" "critical bug fixed in v0.2.3"
17
18 Note that you must be the package owner to deprecate something.  See the
19 `owner` and `adduser` help topics.
20
21 To un-deprecate a package, specify an empty string (`""`) for the `message` argument.
22
23 ## SEE ALSO
24
25 * npm-publish(1)
26 * npm-registry(7)