From 6a48e4da5f5a42e5d1c75d84e520c5e106de5aca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Migone?= Date: Mon, 27 May 2024 13:36:44 -0300 Subject: [PATCH] fix: foundry profile usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomás Migone --- packages/horizon/package.json | 4 ++-- packages/subgraph-service/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/horizon/package.json b/packages/horizon/package.json index 2eee03723..1118b1b19 100644 --- a/packages/horizon/package.json +++ b/packages/horizon/package.json @@ -9,8 +9,8 @@ "lint:sol": "prettier --write contracts/**/*.sol && solhint --noPrompt --fix contracts/**/*.sol --config node_modules/solhint-graph-config/index.js", "lint": "yarn lint:ts && yarn lint:sol", "clean": "rm -rf build cache typechain-types", - "build": "FOUNDRY_PROFILE=lite forge build && hardhat compile", - "test": "forge test -vvv && hardhat test" + "build": "forge build && hardhat compile", + "test": "FOUNDRY_PROFILE=lite forge test -vvv && hardhat test" }, "devDependencies": { "@graphprotocol/contracts": "workspace:^7.0.0", diff --git a/packages/subgraph-service/package.json b/packages/subgraph-service/package.json index 1cfe655b2..6e963c603 100644 --- a/packages/subgraph-service/package.json +++ b/packages/subgraph-service/package.json @@ -9,8 +9,8 @@ "lint:sol": "prettier --write contracts/**/*.sol && solhint --noPrompt --fix contracts/**/*.sol --config node_modules/solhint-graph-config/index.js", "lint": "yarn lint:ts && yarn lint:sol", "clean": "rm -rf build cache typechain-types", - "build": "FOUNDRY_PROFILE=lite forge build && hardhat compile", - "test": "forge test -vvv && hardhat test" + "build": "forge build && hardhat compile", + "test": "FOUNDRY_PROFILE=lite forge test -vvv && hardhat test" }, "devDependencies": { "@graphprotocol/contracts": "workspace:^7.0.0",