I am trying to install some js files through bower. My repo has bower.json with the main property, but the whole repo is installed on the / components, not just the files in dist / custom / dir.
Here is what my bower.rc looks like
{ "name": "jquery-m", "version": "2.0.2mup", "description": "Meetup custom build of jQuery 2.0, used on mobile", "main": [ "./dist/custom/" ], "license": "MIT" }
Is this supposed to work? I thought you could just specify specific files with your main property.
source share