Open raksooo opened 2 years ago
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"
}
}
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 ofgot@11
and could be resolved by upgrading togot@12
.Here's the dependency tree from
electron-rebuild
to@types/keyv
: