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.

54 lines
1.5 KiB

  1. .TH "NPM\-UNPUBLISH" "1" "August 2018" "" ""
  2. .SH "NAME"
  3. \fBnpm-unpublish\fR \- Remove a package from the registry
  4. .SH SYNOPSIS
  5. .P
  6. .RS 2
  7. .nf
  8. npm unpublish [<@scope>/]<pkg>[@<version>]
  9. .fi
  10. .RE
  11. .SH WARNING
  12. .P
  13. \fBIt is generally considered bad behavior to remove versions of a library
  14. that others are depending on!\fR
  15. .P
  16. Consider using the \fBdeprecate\fP command
  17. instead, if your intent is to encourage users to upgrade\.
  18. .P
  19. There is plenty of room on the registry\.
  20. .SH DESCRIPTION
  21. .P
  22. This removes a package version from the registry, deleting its
  23. entry and removing the tarball\.
  24. .P
  25. If no version is specified, or if all versions are removed then
  26. the root package entry is removed from the registry entirely\.
  27. .P
  28. Even if a package version is unpublished, that specific name and
  29. version combination can never be reused\. In order to publish the
  30. package again, a new version number must be used\. Additionally,
  31. new versions of packages with every version unpublished may not
  32. be republished until 24 hours have passed\.
  33. .P
  34. With the default registry (\fBregistry\.npmjs\.org\fP), unpublish is
  35. only allowed with versions published in the last 72 hours\. If you
  36. are trying to unpublish a version published longer ago than that,
  37. contact \|\.
  38. .P
  39. The scope is optional and follows the usual rules for npm help 7 \fBnpm\-scope\fP\|\.
  40. .SH SEE ALSO
  41. .RS 0
  42. .IP \(bu 2
  43. npm help deprecate
  44. .IP \(bu 2
  45. npm help publish
  46. .IP \(bu 2
  47. npm help 7 registry
  48. .IP \(bu 2
  49. npm help adduser
  50. .IP \(bu 2
  51. npm help owner
  52. .RE