Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

37 lines
826 B

  1. .TH "NPM\-DEPRECATE" "1" "August 2018" "" ""
  2. .SH "NAME"
  3. \fBnpm-deprecate\fR \- Deprecate a version of a package
  4. .SH SYNOPSIS
  5. .P
  6. .RS 2
  7. .nf
  8. npm deprecate <pkg>[@<version>] <message>
  9. .fi
  10. .RE
  11. .SH DESCRIPTION
  12. .P
  13. This command will update the npm registry entry for a package, providing
  14. a deprecation warning to all who attempt to install it\.
  15. .P
  16. It works on version ranges as well as specific versions, so you can do
  17. something like this:
  18. .P
  19. .RS 2
  20. .nf
  21. npm deprecate my\-thing@"< 0\.2\.3" "critical bug fixed in v0\.2\.3"
  22. .fi
  23. .RE
  24. .P
  25. Note that you must be the package owner to deprecate something\. See the
  26. \fBowner\fP and \fBadduser\fP help topics\.
  27. .P
  28. To un\-deprecate a package, specify an empty string (\fB""\fP) for the \fBmessage\fP argument\.
  29. .SH SEE ALSO
  30. .RS 0
  31. .IP \(bu 2
  32. npm help publish
  33. .IP \(bu 2
  34. npm help 7 registry
  35. .RE