Federico Zivolo

Results 282 comments of Federico Zivolo

I'm trying to understand how is Facebook able to use Yarn in production with these bugs... Is anyone from the team aware of this problem? #4730 doesn't seem to have...

https://github.com/yarnpkg/yarn/issues/7212#issuecomment-493720324 I can confirm the issue seems to be related to a git dependency. But a workspace is not needed in my case to repro the problem. Also, in my...

One can add them to the same local directory and the script would match them (prepend test_ to the file name)?

@Brianzchen I didn't have time to test it yet, I'm sorry.

@dsainati1 what's the suggested way to update this type without `$SuperType`? ``` // from lodash definitions create(prototype: T): $Supertype; ```

```js function Shape() { this.x = 0; this.y = 0; } function Circle() { Shape.call(this); } Circle.prototype = _.create(Shape.prototype, { 'constructor': Circle }); var circle = new Circle; circle instanceof...

I don't use that method unfortunately, I just wanted to fix the typings :-)

Just to understand, the Flow types have been automatically generated, but they can be changed independently without being "reset" by a new auto generation, right? Do we have some tests...

Hey @tympanix I see you are maintaining again the project? Would it be possible to prioritize this? It's a very important feature :-(