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.

26 lines
719 B

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