From 54e3d5e40fdf6c01d828b3c02fc02415fed1747d Mon Sep 17 00:00:00 2001 From: The Dark Jester Date: Fri, 13 Sep 2024 02:20:37 -0700 Subject: [PATCH] Remove concurrent contract compilation (#35) --- contracts/Makefile | 2 +- contracts/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/Makefile b/contracts/Makefile index bb3e224f9..34c486270 100644 --- a/contracts/Makefile +++ b/contracts/Makefile @@ -5,7 +5,7 @@ compile: npx hardhat run scripts/hardhat/postCompile.ts force-compile: - npx hardhat compile --concurrency 4 --force + npx hardhat compile --force npx hardhat run scripts/hardhat/postCompile.ts clean: diff --git a/contracts/package.json b/contracts/package.json index f4eae8a1f..bbeb1a22d 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -5,7 +5,7 @@ "pnpm": ">=9" }, "scripts": { - "build": "npx hardhat compile --concurrency 4", + "build": "npx hardhat compile", "test": "npm run autoupdate && npx hardhat test", "test:reportgas": "REPORT_GAS=true npx hardhat test", "coverage": "npm run autoupdate && npx hardhat coverage --solcoverjs ./.solcover.js",