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.

30 lines
889 B

  1. npm-pack(1) -- Create a tarball from a package
  2. ==============================================
  3. ## SYNOPSIS
  4. npm pack [[<@scope>/]<pkg>...] [--dry-run]
  5. ## DESCRIPTION
  6. For anything that's installable (that is, a package folder, tarball,
  7. tarball url, name@tag, name@version, name, or scoped name), this
  8. command will fetch it to the cache, and then copy the tarball to the
  9. current working directory as `<name>-<version>.tgz`, and then write
  10. the filenames out to stdout.
  11. If the same package is specified multiple times, then the file will be
  12. overwritten the second time.
  13. If no arguments are supplied, then npm packs the current package folder.
  14. The `--dry-run` argument will do everything that pack usually does without
  15. actually packing anything. Reports on what would have gone into the tarball.
  16. ## SEE ALSO
  17. * npm-cache(1)
  18. * npm-publish(1)
  19. * npm-config(1)
  20. * npm-config(7)
  21. * npmrc(5)