I need a way to determine the files that I need from the bower component. In bower.json in the component, the files I need are not specified in the main setting. I would like to symbolize or copy files to another directory resources directory from the gazebo. I am using Grunt and I have not found anything that could help. I would like to somehow identify all the files via json .
Sorry if this is not quite a stop flow worthy, but I really desperately want to find something that exists, and not reinvent the wheel.
I found this code here , and I don't know how to use it. That would be perfect.
"dependencies": { "font-awesome": ">= 3.2.1" }, "overrides": { "font-awesome": { "main": [ "css/font-awesome.min.css", "font/FontAwesome.otf", "font/fontawesome-webfont.eot", "font/fontawesome-webfont.svg", "font/fontawesome-webfont.ttf", "font/fontawesome-webfont.woff" ] } }
source share