bower packages that have name != _originalSource are not added to the application at runtime (jquery-ui for example).
This is due to the line 95 in handler.js file
var pkgName = item.pkgMeta._originalSource || item.pkgName;
the solution that I foun is to remove this condition and let only var
Once the package name is different from folder name, the file are not loaded.
For example angular-utils-pagination which has package name angularUtils-pagination.
bower packages that have name != _originalSource are not added to the application at runtime (jquery-ui for example). This is due to the line 95 in handler.js file var pkgName = item.pkgMeta._originalSource || item.pkgName; the solution that I foun is to remove this condition and let only var
pkgName = item.pkgName;