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
869 B

  1. npm-explore(1) -- Browse an installed package
  2. =============================================
  3. ## SYNOPSIS
  4. npm explore <pkg> [ -- <command>]
  5. ## DESCRIPTION
  6. Spawn a subshell in the directory of the installed package specified.
  7. If a command is specified, then it is run in the subshell, which then
  8. immediately terminates.
  9. This is particularly handy in the case of git submodules in the
  10. `node_modules` folder:
  11. npm explore some-dependency -- git pull origin master
  12. Note that the package is *not* automatically rebuilt afterwards, so be
  13. sure to use `npm rebuild <pkg>` if you make any changes.
  14. ## CONFIGURATION
  15. ### shell
  16. * Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
  17. Windows
  18. * Type: path
  19. The shell to run for the `npm explore` command.
  20. ## SEE ALSO
  21. * npm-folders(5)
  22. * npm-edit(1)
  23. * npm-rebuild(1)
  24. * npm-build(1)
  25. * npm-install(1)