electron/rebuild

Unavailable transitive dependencies (@types/keyv) due to dependency on old version of got

raksooo opened this issue · 1 comments

It looks like @types/keyv and @types/cacheable-request were deprecated and had an update which is just an empty package. @types/cacheable-request has specified the @types/keyv version to * which leads npm to use the latest version, which is empty.

@types/cacheable-request is a dependency of got@11 and could be resolved by upgrading to got@12.

Here's the dependency tree from electron-rebuild to @types/keyv:

    └─┬ electron-rebuild@3.2.9
      └─┬ got@11.8.5
        └─┬ @types/cacheable-request@6.0.2
          └── @types/keyv@4.2.0

Definitely seems like something we should fix.

A temporary fix could be to use a resolution in your package.json to pin that version to the last @types/keyv version that wasn't stubbed out.

{
  "resolutions": {
    "@types/keyv": "3.1.4"
  }
}