This is current code and not working after uglify task:
; (function( angular ) {
"use strict";
angular.module( 'logglyLogger.logger', [] )
...
...
}]);
})(window.angular);
But this one works:
"use strict";
angular.module( 'logglyLogger.logger', [] )
...
...
}]);
It seems first line and last line are not necessary,
Could this get fixed in next version ?
So we could use logglyLogger as a bower dependency.
p.s. if matters grunt-contrib-uglify version 0.10.1 was used.