help-link.json 795 B

123456789101112131415
  1. {
  2. "command": "link",
  3. "description": "The link functionality allows developers to easily test their packages.\nLinking is a two-step process.\n\nUsing 'bower link' in a project folder will create a global link.\nThen, in some other package, 'bower link <name>' will create a link in the components folder pointing to the previously created link.\n\nThis allows to easily test a package because changes will be reflected immediately.\nWhen the link is no longer necessary, simply remove it with 'bower uninstall <name>'.",
  4. "usage": [
  5. "link [<options>]",
  6. "link <name> [<local name>] [<options>]"
  7. ],
  8. "options": [
  9. {
  10. "shorthand": "-h",
  11. "flag": "--help",
  12. "description": "Show this help message"
  13. }
  14. ]
  15. }