Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use built-in pnpm filtering methods #1156

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@
"get-monorepo-packages": "^1.2.0",
"husky": "^8.0.3",
"prettier": "^3.3.0",
"typescript": "^5.3.0",
"wsrun": "^5.2.2"
"typescript": "^5.3.0"
},
"scripts": {
"build": "tsc --build packages/hardhat-zksync-solc packages/hardhat-zksync-deploy packages/hardhat-zksync-vyper packages/hardhat-zksync-chai-matchers packages/hardhat-zksync-verify packages/hardhat-zksync-upgradable packages/hardhat-zksync-verify-vyper packages/hardhat-zksync-node packages/hardhat-zksync-ethers packages/hardhat-zksync",
"watch": "tsc --build --watch packages/hardhat-zksync-solc packages/hardhat-zksync-deploy packages/hardhat-zksync-vyper packages/hardhat-zksync-chai-matchers packages/hardhat-zksync-verify packages/hardhat-zksync-upgradable packages/hardhat-zksync-verify-vyper packages/hardhat-zksync-node packages/hardhat-zksync-ethers packages/hardhat-zksync",
"clean": "wsrun --exclude-missing clean",
"lint": "wsrun --exclude-missing --stages lint",
"lint:fix": "wsrun --exclude-missing --stages lint:fix",
"prettier:check": "wsrun --exclude-missing --stages prettier:check",
"clean": "pnpm run --recursive clean",
"lint": "pnpm run --recursive lint",
"lint:fix": "pnpm run --recursive lint:fix",
"prettier:check": "pnpm run --recursive prettier:check",
"test:release-script": "mocha scripts/test/tests.js",
"prepare": "pnpm husky install"
},
Expand Down
Loading