Skip to content

Commit

Permalink
👷 Fix Glob Pattern in npm Scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Jan 23, 2024
1 parent 5f0d4fd commit 3c47011
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"snapshot": "forge snapshot --out forge-artifacts",
"coverage:hh": "npx hardhat coverage",
"coverage:forge": "forge coverage --report summary",
"coverage:forge:report": "forge coverage --report lcov && lcov --remove lcov.info 'test/*' --output-file lcov.info --rc lcov_branch_coverage=1 && genhtml lcov.info --branch-coverage --output-dir coverage",
"coverage:forge:report": "forge coverage --report lcov && lcov --remove lcov.info \"test/*\" --output-file lcov.info --rc lcov_branch_coverage=1 && genhtml lcov.info --branch-coverage --output-dir coverage",
"test:hh": "npx hardhat test",
"test:forge": "forge test -vvv --root . -C contracts/src --match-path \"contracts/test/*\" --out forge-artifacts",
"compile": "npx hardhat compile && forge build --root . -C contracts/src --optimize --out forge-artifacts",
Expand Down Expand Up @@ -109,12 +109,12 @@
"deploy:shardeumtestnet": "npx hardhat run --network shardeumTestnet scripts/deploy.ts",
"deploy:artheratestnet": "npx hardhat run --network artheraTestnet scripts/deploy.ts",
"deploy:frametestnet": "npx hardhat run --network frameTestnet scripts/deploy.ts",
"prettier:check": "npx prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:fix": "npx prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
"solhint:check": "npx solhint 'contracts/**/*.sol'",
"solhint:fix": "npx solhint 'contracts/**/*.sol' --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && npx eslint **/*.{js,ts}",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint **/*.{js,ts} --fix"
"prettier:check": "npx prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"",
"solhint:check": "npx solhint \"contracts/**/*.sol\"",
"solhint:fix": "npx solhint \"contracts/**/*.sol\" --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && npx eslint \"**/*.{js,ts}\"",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint \"**/*.{js,ts}\" --fix"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^1.1.2",
Expand Down

0 comments on commit 3c47011

Please sign in to comment.