Skip to content

Commit

Permalink
Fix depcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
forshtat committed Dec 11, 2024
1 parent 915df43 commit 2cc729c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"runop": "yarn --cwd packages/bundler runop",
"runop-goerli": "yarn runop --network goerli --unsafe",
"create-all-deps": "jq '.dependencies,.devDependencies' packages/*/package.json |sort -u > all.deps",
"depcheck": "lerna exec --no-bail --stream --parallel -- npx depcheck --ignores @account-abstraction/contracts,@openzeppelin/contracts,@uniswap/v3-periphery",
"depcheck": "lerna exec --no-bail --stream --parallel --ignore \"@account-abstraction/contracts\" -- npx depcheck --ignores=\"@account-abstraction/contracts,@openzeppelin/contracts,@uniswap/v3-periphery\"",
"hardhat-node": "lerna run hardhat-node --stream --no-prefix --",
"hardhat-deploy": "lerna run hardhat-deploy --stream --no-prefix --",
"lerna-clear": "lerna run clear",
Expand Down
3 changes: 3 additions & 0 deletions packages/bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
"@account-abstraction/sdk": "^0.7.0",
"@account-abstraction/utils": "^0.7.0",
"@account-abstraction/validation-manager": "^0.7.0",
"@ethereumjs/common": "^5.0.0-alpha.1",
"@ethereumjs/rlp": "^5.0.2",
"@ethereumjs/tx": "^6.0.0-alpha.1",
"@ethereumjs/util": "^10.0.0-alpha.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@types/cors": "^2.8.12",
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@
},
"dependencies": {
"@account-abstraction/contracts": "^0.7.0",
"@ethereumjs/util": "10.0.0-alpha.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@openzeppelin/contracts": "^5.0.1",
"debug": "^4.3.4",
Expand Down
1 change: 1 addition & 0 deletions packages/validation-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"watch-tsc": "tsc -w --preserveWatchOutput"
},
"dependencies": {
"@account-abstraction/contracts": "0.7.0",
"@account-abstraction/sdk": "0.7.0",
"@account-abstraction/utils": "0.7.0",
"@ethersproject/properties": "^5.7.0",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
"@ethereumjs/util" "^10.0.0-alpha.1"
ethereum-cryptography "^3.0.0"

"@ethereumjs/util@^10.0.0-alpha.1":
"@ethereumjs/util@10.0.0-alpha.1", "@ethereumjs/util@^10.0.0-alpha.1":
version "10.0.0-alpha.1"
resolved "https://registry.yarnpkg.com/@ethereumjs/util/-/util-10.0.0-alpha.1.tgz#718ecbfc5ce493f878bf9771eae2479e305bc68e"
integrity sha512-D2HinI9AGviGNYoCbZjRje+b6a5CsDbWAUSOSTdFzhBduxNjCBWcnJdYWEmMG5+tknJsH3vbhr81Mhj1BR823g==
Expand Down

0 comments on commit 2cc729c

Please sign in to comment.