I am trying to move frontend dependencies out of the version control system. A combination of Bower.io and Grunt should be able to do this.
A problem however occurs
You'll want to do some search/replace on your dist css file to generate the correct relative paths. There are a number of grunt plugins that can do this for you, personally I prefer grunt-replace. Set up your non compressed assets with variables and then produce a dist css with the URLs dynamically generated.. So:
body {
background:url(@@IMG_PATH/background.jpg);
}
Becomes this in dist:
body {
background:url(path/to/background.jpg);
}
Hope this helps.