Add process names when running concurrently

This commit is contained in:
Arnaud 2025-04-17 16:07:30 +02:00
parent ca9d8bb31e
commit 3614bfe7ed
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -4,7 +4,7 @@
"scripts": {
"test": "npm run lint && NODE_ENV=test hardhat test",
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
"start": "concurrently \"hardhat node\" \"sleep 2 && npm run deploy\"",
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run deploy\"",
"compile": "hardhat compile",
"format": "prettier --write test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol ",
"format:check": "prettier --check test/**/*.js --plugin=prettier-plugin-solidity contracts/**/*.sol",