2.0.0 • Published 9 years ago

bower-deploy v2.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

bower-deploy

Tool for installing bower dependencies and copying them right after into relative directories specified inside bower.json

{
  "name" : "test",
  "version": "0.1",
  "dependencies" : {
    "jquery" : "latest",
    "jquery-ui" : "latest",
    "bootstrap" : "latest"
  },
  "deploy" : [
    {
        "path" : "components/js",
        "sources" : [
            "jquery",
            "jquery-ui"
        ]
    },
    {
        "path" : "components/css",
        "sources" : [
            "bootstrap"
        ]
    }
  ]
}

Will result to this:

bower_components/
  jquery/
  jquery-ui/
  bootstrap/
components/
  js/
    jquery/
    jquery-ui/
  css
    bootstrap/

TODO: Explain Program Flow

TODO: List Options

2.0.0

9 years ago

1.0.0

9 years ago