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.

38 lines
1.3 KiB

  1. npm-prune(1) -- Remove extraneous packages
  2. ==========================================
  3. ## SYNOPSIS
  4. npm prune [[<@scope>/]<pkg>...] [--production] [--dry-run] [--json]
  5. ## DESCRIPTION
  6. This command removes "extraneous" packages. If a package name is
  7. provided, then only packages matching one of the supplied names are
  8. removed.
  9. Extraneous packages are packages that are not listed on the parent
  10. package's dependencies list.
  11. If the `--production` flag is specified or the `NODE_ENV` environment
  12. variable is set to `production`, this command will remove the packages
  13. specified in your `devDependencies`. Setting `--no-production` will
  14. negate `NODE_ENV` being set to `production`.
  15. If the `--dry-run` flag is used then no changes will actually be made.
  16. If the `--json` flag is used then the changes `npm prune` made (or would
  17. have made with `--dry-run`) are printed as a JSON object.
  18. In normal operation with package-locks enabled, extraneous modules are
  19. pruned automatically when modules are installed and you'll only need
  20. this command with the `--production` flag.
  21. If you've disabled package-locks then extraneous modules will not be removed
  22. and it's up to you to run `npm prune` from time-to-time to remove them.
  23. ## SEE ALSO
  24. * npm-uninstall(1)
  25. * npm-folders(5)
  26. * npm-ls(1)