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.

25 lines
476 B

  1. npm-build(1) -- Build a package
  2. ===============================
  3. ## SYNOPSIS
  4. npm build [<package-folder>]
  5. * `<package-folder>`:
  6. A folder containing a `package.json` file in its root.
  7. ## DESCRIPTION
  8. This is the plumbing command called by `npm link` and `npm install`.
  9. It should generally be called during installation, but if you need to run it
  10. directly, run:
  11. npm run-script build
  12. ## SEE ALSO
  13. * npm-install(1)
  14. * npm-link(1)
  15. * npm-scripts(7)
  16. * package.json(5)