From a79742a90ad4cbc83ba94a95997990023562a33c Mon Sep 17 00:00:00 2001 From: Rubilmax Date: Wed, 30 Aug 2023 08:53:37 +0200 Subject: [PATCH] refactor(yarn): dont force compilation --- foundry.toml | 2 -- package.json | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/foundry.toml b/foundry.toml index 8ccf43ae0..b698a4eec 100644 --- a/foundry.toml +++ b/foundry.toml @@ -16,12 +16,10 @@ wrap_comments = true [profile.build] test = "/dev/null" script = "/dev/null" -force = true [profile.test] via-ir = false -extra_output_files = [] # See more config options https://github.com/foundry-rs/foundry/tree/master/crates/config diff --git a/package.json b/package.json index 6ebdeb07d..4c3d2c830 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "postinstall": "husky install && forge install", "build:forge": "FOUNDRY_PROFILE=build forge build", - "build:hardhat": "npx hardhat compile --force", + "build:hardhat": "npx hardhat compile", "test:forge": "FOUNDRY_PROFILE=test forge test", "test:forge:invariant": "FOUNDRY_MATCH_CONTRACT=InvariantTest yarn test:forge", "test:forge:integration": "FOUNDRY_MATCH_CONTRACT=IntegrationTest yarn test:forge",