RopoMen

Results 22 comments of RopoMen

Check the reason over [here](https://github.com/passy/angular-masonry/issues/100#issuecomment-155366646)

Well, yes. This may not be even possible to do what I googled, but I would start looking for ways to decorate $rootScope and override $new method so that you...

or just alter line 64: function register($rootScope) {$rootScope[methodName] = _.bind(_[methodName], _);} to ``` function register($rootScope) {$rootScope.__proto__[methodName] = _.bind(_[methodName], _);} ```

I contacted NPM support and this advisory 1095 is now fixed in the 3.0.1 version https://www.npmjs.com/advisories/1095/versions

Hi, I encountered this when I was running tests with TeamCity, I copied build configuration under another project, but build configuration did not copy build feature "SSH Agent" with proper...

@philsturgeon I can rebase this, but I wont be writing any tests because this is just type definition update to make type checks pass. I can try to find a...

@philsturgeon could some of you maintainers look at this, please.

`package-lock.json` changed a lot because I used node 12.18.3 that has npm 6.14.6. It is ok to develop with the latest node+npm versions, but because package.json states that node-soap is...

One possible workaround to type issue could be ``` import { IOptions } from 'soap' // with axios 0.21.1 import axios from 'axios' // our axios 0.25.0 // code const...