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.

39 lines
757 B

  1. npm-restart(1) -- Restart a package
  2. ===================================
  3. ## SYNOPSIS
  4. npm restart [-- <args>]
  5. ## DESCRIPTION
  6. This restarts a package.
  7. This runs a package's "stop", "restart", and "start" scripts, and associated
  8. pre- and post- scripts, in the order given below:
  9. 1. prerestart
  10. 2. prestop
  11. 3. stop
  12. 4. poststop
  13. 5. restart
  14. 6. prestart
  15. 7. start
  16. 8. poststart
  17. 9. postrestart
  18. ## NOTE
  19. Note that the "restart" script is run **in addition to** the "stop"
  20. and "start" scripts, not instead of them.
  21. This is the behavior as of `npm` major version 2. A change in this
  22. behavior will be accompanied by an increase in major version number
  23. ## SEE ALSO
  24. * npm-run-script(1)
  25. * npm-scripts(7)
  26. * npm-test(1)
  27. * npm-start(1)
  28. * npm-stop(1)
  29. * npm-restart(3)