You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.
The solution here is to make sure the correct dependencies are declared.
Unfortunately depcheck (the package behind the aegir dep-check command) doesn't support throwing errors for missing dependencies when they are in the devDependencies section of package.json as is the case here, at least, it didn't when aegir was switched to use it, that may have changed since then.
The text was updated successfully, but these errors were encountered:
@helia/ipns
imports from@libp2p/interface
:helia-ipns/packages/ipns/src/index.ts
Line 115 in ae6354b
..but
@libp2p/interface
is only declared as a dev dep.I think this has made
esm.sh
use the latest version of@libp2p/interface
instead:https://esm.sh/@helia/ipns@3.0.1
It tries to load:
https://esm.sh/v135/@libp2p/interface@1.0.2/es2022/errors.js
..which uses
@libp2p/interface@1.0.2
but the depended on version is0.1.4
- this resource exists:https://esm.sh/v135/@libp2p/interface@0.1.4/es2022/errors.js
The solution here is to make sure the correct dependencies are declared.
Unfortunately depcheck (the package behind the
aegir dep-check
command) doesn't support throwing errors for missing dependencies when they are in thedevDependencies
section ofpackage.json
as is the case here, at least, it didn't when aegir was switched to use it, that may have changed since then.The text was updated successfully, but these errors were encountered: