-
Notifications
You must be signed in to change notification settings - Fork 23
Description
Description:
I encountered several dependency resolution errors while running yarn install in the project. The errors include missing peer dependencies and checksum mismatches for certain packages.
Steps to Reproduce:
git clone https://github.com/username/repo-name.git
cd repo-name/packages/app
Run yarn install.
Expected Behavior:
The installation should complete without errors or warnings.
Actual Behavior:
The following issues were encountered:
Missing @babel/core in @proof-of-twitter/circuits and @zk-email/twitter-verifier-app.
Missing esbuild and node-fetch in @zk-email/twitter-verifier-app.
Incompatible version of viem required by @rainbow-me/rainbowkit.
Checksum mismatch for forge-std when fetching from the remote repository.
Error Logs:
plaintext
➤ YN0002: │ @proof-of-twitter/circuits@workspace:packages/circuits doesn't provide @babel/core (p62711), requested by @babel/preset-env
...
➤ YN0018: │ forge-std@https://github.com/foundry-rs/forge-std.git#commit=ee000c6c27859065d7b3da6047345607c1d94a0d: The remote archive doesn't match the expected checksum
Environment:
Node.js version: v18.17.1
Yarn version: 3.6.4
Operating System: macOS Ventura 13.5
Additional Context:
I attempted to resolve the issues locally by adding missing dependencies and clearing the cache, but the problem persists.