usage.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. Usage: browserify [entry files] {OPTIONS}
  2. Standard Options:
  3. --outfile, -o Write the browserify bundle to this file.
  4. If unspecified, browserify prints to stdout.
  5. --require, -r A module name or file to bundle.require()
  6. Optionally use a colon separator to set the target.
  7. --entry, -e An entry point of your app
  8. --ignore, -i Replace a file with an empty stub. Files can be globs.
  9. --exclude, -u Omit a file from the output bundle. Files can be globs.
  10. --external, -x Reference a file from another bundle. Files can be globs.
  11. --transform, -t Use a transform module on top-level files.
  12. --command, -c Use a transform command on top-level files.
  13. --standalone -s Generate a UMD bundle for the supplied export name.
  14. This bundle works with other module systems and sets the name
  15. given as a window global if no module system is found.
  16. --debug -d Enable source maps that allow you to debug your files
  17. separately.
  18. --help, -h Show this message
  19. For advanced options, type `browserify --help advanced`.
  20. Specify a parameter.