We use main-bower-files with gulp to inject our dependencies into our application and just suffered an outage because the main property in angular-img-fallback's bower points to ES6 code. I'd suggest pointing it towards the transpiled minified version instead.
Until this fix is deployed, the workaround is adding the following to your applications bower file:
"overrides": {
"angular-img-fallback": {
"main": "angular.dcb-img-fallback.min.js"
}
}
We use
main-bower-fileswith gulp to inject our dependencies into our application and just suffered an outage because the main property in angular-img-fallback's bower points to ES6 code. I'd suggest pointing it towards the transpiled minified version instead.Until this fix is deployed, the workaround is adding the following to your applications bower file: