Ryan Gasparini

Results 8 comments of Ryan Gasparini

Adding an override doesn't fix the issue with `enzyme` incorrectly using a loose RC pattern for a hard dependency. ```json "overrides": { "enzyme": { "cheerio": "1.0.0.rc-3" } }, ``` >...

@ljharb what old version of npm are you using? ``` npm ERR! code EINVALIDTAGNAME npm ERR! Invalid tag name "=1.0.0.rc-3" of package "cheerio@=1.0.0.rc-3": Tags may not have any characters that...

Is it possible that this version is missing from the registry? I get these errors even with `rm node_modules` and `npm cache verify`. _OR something up with npm itself_ ```...

Here's what I originally thought was the resolution before being derailed by the invalid `=` syntax. I got the hyphen and dots mixed up. ``` "overrides": { "enzyme": { "cheerio":...

To resolve any confusion, should this be specifically labelled as Webpack v1?

If you search for `## Reduce searching time`, you'll find a heading that didn't get formatted.

For the `diff-so-fancy` error I am receiving at: ``` Use of uninitialized value in addition (+) at /Users/rgasparini/.volta/tools/image/packages/diff-so-fancy/bin/diff-so-fancy line 1282, line 28. ``` is some color setting in `~/.gitconfig` that...

If I remove this line from my `~/.gitconfig` file, I no longer get the addition error. ```diff [color "diff"] ... - meta = normal ... ```