It would behelpful to mention in the Readme thet the dependency "overlay" has a script, item.js, which isn't loaded when wiredep is used. The solution is to use the "overrides" attribute in the bower.json:
{
"name": "myExampleApp",
"overrides": {
"outlayer": {
"main": [
"item.js",
"outlayer.js"
]
}
},
"dependencies": {
"angular": "~1.4.*",
"angular-masonry-directive": "*",
....
},
...
}
It would behelpful to mention in the Readme thet the dependency "overlay" has a script, item.js, which isn't loaded when wiredep is used. The solution is to use the "overrides" attribute in the bower.json: