"wiredep override" as explained in https://github.com/taptapship/wiredep#bower-overrides works well for packages that have a bower.json file with a missing "main" element. But it does not work for packages that have no bower.json in the first place. It seems to be possible to reference git repositories as bower dependencies as follows:
Using this kind of direct reference works with "bower install" but not with "grunt wiredep". In my case the index.html does not import the file "smooth-scroll.js" altough I expected "grunt wiredep" to look for the overrides.
"wiredep override" as explained in https://github.com/taptapship/wiredep#bower-overrides works well for packages that have a bower.json file with a missing "main" element. But it does not work for packages that have no bower.json in the first place. It seems to be possible to reference git repositories as bower dependencies as follows:
Using this kind of direct reference works with "bower install" but not with "grunt wiredep". In my case the index.html does not import the file "smooth-scroll.js" altough I expected "grunt wiredep" to look for the overrides.
How to solve this issue?